{
 "cells": [
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "40dd5488",
   "metadata": {},
   "source": [
    "## HRA-API Documentation"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "e2d89b95",
   "metadata": {},
   "source": [
    "# Comments\n",
    " - Note that the section on [Given a SpatialEntity already placed relative to a reference SpatialEntity retrieve a new direct SpatialPlacement to the given SpatialEntity IRI](#spatial_entity) technically works but returns a 404 due to a faulty input? Result is expected, but we probably need a better example for this documentation.\n",
    " - An error log is [here](README.md).\n",
    "\n",
    "# INDEX\n",
    "1. [Installation](#install) \n",
    "2. [Imports](#imports)\n",
    "3. [Configuration](#config)\n",
    "4. [Methods](#methods)\n",
    "    1. [Database Status](#db_status) \n",
    "    2. [Run a Sparql query](#sparql_get) \n",
    "    3. [Run a Sparql query (POST)](#sparql_post) \n",
    "    4. [Get aggregate results / statistics](#agg_results) \n",
    "    5. [Given a SpatialEntity already placed relative to a reference SpatialEntity retrieve a new direct SpatialPlacement to the given SpatialEntity IRI](#spatial_entity)\n",
    "    6. [Get all hubmap rui locations](#rui_loc)\n",
    "    7. [Get number of ontology term occurrences for a search](#ontology_term) \n",
    "    8. [Get number of cell type term occurrences for a search](#cell_term_occ) \n",
    "    9.  [Get ontology term tree nodes](#ontology_nodes) \n",
    "    10. [Get cell type tree nodes](#cell_nodes)\n",
    "    11. [Get tissue provider names (for filtering)](#providers) \n",
    "    12. [Get all reference organs](#ref_organs) \n",
    "    13. [Get all nodes to form the 3D scene for an organ](#3d_scene) \n",
    "    14. [Get all nodes to form the 3D scene of reference body, organs, and tissues](#nodes_3d) \n",
    "    15. [Get technology names (for filtering)](#tech) \n",
    "    16. [Get Tissue Block Results](#tissue_block) \n",
    "    17. [Get all GTEx rui locations (if enabled)](#gtex_rui)\n",
    "    18. [Token](#token_usage) \n",
    "    19. [Generate a 3D corridor](#corridors)\n",
    "    20. [Mesh-Based Collision Detection](#collision)\n",
    "    21. [3D Cell Generation](#3d_cell)\n"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "43773186",
   "metadata": {},
   "source": [
    "<a id='install'></a>\n",
    "### Installation\n",
    "\n",
    "#### hra-api-client can be installed via `pip` from [PyPI](https://pypi.org/project/hra-api-client/#description).\n",
    "***\n",
    "> `pip install hra-api-client`\n",
    "***\n",
    "\n",
    "You may also specify the version number:\n",
    "***\n",
    "> `pip install hra-api-client==0.10.0`\n",
    "***"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "fd9a85aa",
   "metadata": {},
   "source": []
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "c3f1f6d5",
   "metadata": {},
   "source": [
    "<a id='imports'></a>\n",
    "### Imports \n",
    "\n",
    "We import the hra-api-client as follows:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "e5e21389",
   "metadata": {},
   "outputs": [],
   "source": [
    "import hra_api_client"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "0d6f2a35",
   "metadata": {},
   "source": [
    "Although we can use hra-api-client for all our tasks, it is easier if we have individual imports as follows:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "d9f69dc1",
   "metadata": {},
   "outputs": [],
   "source": [
    "from hra_api_client.api import v1_api as default_api\n",
    "from hra_api_client.models.aggregate_count import AggregateCount\n",
    "from hra_api_client.models.database_status import DatabaseStatus\n",
    "from hra_api_client.models.error_message import ErrorMessage\n",
    "from hra_api_client.models.flat_spatial_placement import FlatSpatialPlacement\n",
    "from hra_api_client.models.get_spatial_placement_request import GetSpatialPlacementRequest\n",
    "from hra_api_client.models.min_max import MinMax\n",
    "from hra_api_client.models.ontology_tree import OntologyTree\n",
    "from hra_api_client.models.sparql_query_request import SparqlQueryRequest\n",
    "from hra_api_client.models.spatial_entity import SpatialEntity\n",
    "from hra_api_client.models.spatial_scene_node import SpatialSceneNode\n",
    "from hra_api_client.models.spatial_search import SpatialSearch\n",
    "from hra_api_client.models.tissue_block import TissueBlock"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "7c4af109",
   "metadata": {},
   "source": [
    "For the purposes of this documentation we need some other libraries imported here: "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "3952039c",
   "metadata": {},
   "outputs": [],
   "source": [
    "import time\n",
    "from pprint import pprint\n",
    "from io import StringIO"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "a490f22e",
   "metadata": {},
   "source": [
    "<a id='config'></a>\n",
    "### Configuration\n",
    "The HRA API can fetch data from \n",
    "> HRA-API: https://apps.humanatlas.io/hra-api/v1 <br> \n",
    "> Staging Server: https://apps.humanatlas.io/hra-api--staging/v1 <br>\n",
    "> You could also use any other instance that you decide to host our code on\n",
    "\n",
    "You can get more information about our APIs [here](https://apps.humanatlas.io/hra-api/#/).\n",
    "\n",
    "You'll need to point the host in the configuration to one of the links: "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "2e090732",
   "metadata": {},
   "outputs": [],
   "source": [
    "# may need to remove `v1`\n",
    "configuration = hra_api_client.Configuration(\n",
    "    host = \"https://apps.humanatlas.io/api\" \n",
    ")"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "9faf09af",
   "metadata": {},
   "source": [
    "<a id='api'></a>\n",
    "### Creating the API Instance \n",
    "We will need to create an instance of ApiClient from hra-api-client. The configuration we created above will be passed as a parameter for the constructor. <br> <br>\n",
    "Using the instance of ApiClient we create an instance of DefaultApi from the default_api module we imported above. This instance represents the API interface and provides methods to interact with the API endpoints defined in the OpenAPI specification."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "3d7b7374",
   "metadata": {},
   "outputs": [],
   "source": [
    "api_client = hra_api_client.ApiClient(configuration)\n",
    "\n",
    "api_instance = default_api.V1Api(api_client)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "ed96d236",
   "metadata": {},
   "source": [
    "<a id='methods'></a>\n",
    "### Methods\n",
    "\n",
    "hra-api-client provides multiple methods which we have described below. Each method is described in more detail below : "
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "4ba8a38f",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='db_status'></a>\n",
    "#### Database Status \n",
    "On first run the database might take some time to be ready, so we run it on loop and wait until it's ready.\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    token - (string) (optional)\n",
    "</pre>\n",
    "***\n",
    "> You can still use the other methods without waiting for the database to be ready, but the initial requests might take a little longer."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "49d052a1",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "status='Ready' checkback=3600000 load_time=22594 message='Database successfully loaded'\n",
      "Database ready!\n",
      " status='Ready' checkback=3600000 load_time=22594 message='Database successfully loaded'\n"
     ]
    }
   ],
   "source": [
    "# replace dict notation with dot notation\n",
    "db_ready = False\n",
    "result = None\n",
    "while not db_ready:\n",
    "    result = api_instance.db_status()\n",
    "    print(result)\n",
    "    if result.status == 'Ready':\n",
    "        db_ready = True\n",
    "    else:\n",
    "        print('Database not ready yet! Retrying...', result)\n",
    "        time.sleep(2)\n",
    "print('Database ready!\\n', result)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "173d4800",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='sparql_get'></a>\n",
    "#### Run a SPARQL query\n",
    "<pre>\n",
    "Accepted Parameters: \n",
    "    token - (string) (optional)\n",
    "    format - (string) (optional) (use only application/json in format, any other formats will result in errors.)\n",
    "    query - (string) (required)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "4a739313",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'head': {'vars': ['sub', 'pred', 'obj']},\n",
      " 'results': {'bindings': [{'obj': {'type': 'uri',\n",
      "                                   'value': 'http://www.w3.org/2002/07/owl#AnnotationProperty'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://protege.stanford.edu/plugins/owl/protege#defaultLanguage'}},\n",
      "                          {'obj': {'type': 'literal',\n",
      "                                   'value': 'An entity that exists in full at '\n",
      "                                            'any time in which it exists at '\n",
      "                                            'all, persists through time while '\n",
      "                                            'maintaining its identity and has '\n",
      "                                            'no temporal parts.',\n",
      "                                   'xml:lang': 'en'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://purl.obolibrary.org/obo/IAO_0000115'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'literal',\n",
      "                                   'value': 'BFO 2 Reference: Continuant '\n",
      "                                            'entities are entities which can '\n",
      "                                            'be sliced to yield parts only '\n",
      "                                            'along the spatial dimension, '\n",
      "                                            'yielding for example the parts of '\n",
      "                                            'your table which we call its '\n",
      "                                            'legs, its top, its nails. ‘My '\n",
      "                                            'desk stretches from the window to '\n",
      "                                            'the door. It has spatial parts, '\n",
      "                                            'and can be sliced (in space) in '\n",
      "                                            'two. With respect to time, '\n",
      "                                            'however, a thing is a '\n",
      "                                            'continuant.’ [60, p. 240',\n",
      "                                   'xml:lang': 'en'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://purl.obolibrary.org/obo/IAO_0000116'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'uri',\n",
      "                                   'value': 'http://www.w3.org/2002/07/owl#Class'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'literal',\n",
      "                                   'value': 'continuant',\n",
      "                                   'xml:lang': 'en'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2000/01/rdf-schema#label'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000001'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2000/01/rdf-schema#subClassOf'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'bnode', 'value': 't15972'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2000/01/rdf-schema#subClassOf'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000003'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2002/07/owl#disjointWith'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'bnode', 'value': 't16159'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2002/07/owl#disjointWith'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'bnode', 'value': 't307419'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2002/07/owl#disjointWith'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}}]}}\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.sparql(query='SELECT * WHERE { ?sub ?pred ?obj . } LIMIT 10', format='application/json')\n",
    "    # help(api_instance.sparql)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "230194fd",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='sparql_post'></a>\n",
    "#### Run a SPARQL query (POST) \n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    token - (string) (optional)\n",
    "    format - (string) (optional) (use only application/json in format, any other formats will result in errors.)\n",
    "    sparql_query_request - { \"query\": \"\" } (required)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "b3533391",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'head': {'vars': ['sub', 'pred', 'obj']},\n",
      " 'results': {'bindings': [{'obj': {'type': 'uri',\n",
      "                                   'value': 'http://www.w3.org/2002/07/owl#AnnotationProperty'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://protege.stanford.edu/plugins/owl/protege#defaultLanguage'}},\n",
      "                          {'obj': {'type': 'literal',\n",
      "                                   'value': 'An entity that exists in full at '\n",
      "                                            'any time in which it exists at '\n",
      "                                            'all, persists through time while '\n",
      "                                            'maintaining its identity and has '\n",
      "                                            'no temporal parts.',\n",
      "                                   'xml:lang': 'en'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://purl.obolibrary.org/obo/IAO_0000115'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'literal',\n",
      "                                   'value': 'BFO 2 Reference: Continuant '\n",
      "                                            'entities are entities which can '\n",
      "                                            'be sliced to yield parts only '\n",
      "                                            'along the spatial dimension, '\n",
      "                                            'yielding for example the parts of '\n",
      "                                            'your table which we call its '\n",
      "                                            'legs, its top, its nails. ‘My '\n",
      "                                            'desk stretches from the window to '\n",
      "                                            'the door. It has spatial parts, '\n",
      "                                            'and can be sliced (in space) in '\n",
      "                                            'two. With respect to time, '\n",
      "                                            'however, a thing is a '\n",
      "                                            'continuant.’ [60, p. 240',\n",
      "                                   'xml:lang': 'en'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://purl.obolibrary.org/obo/IAO_0000116'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'uri',\n",
      "                                   'value': 'http://www.w3.org/2002/07/owl#Class'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'literal',\n",
      "                                   'value': 'continuant',\n",
      "                                   'xml:lang': 'en'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2000/01/rdf-schema#label'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000001'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2000/01/rdf-schema#subClassOf'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'bnode', 'value': 't15972'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2000/01/rdf-schema#subClassOf'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000003'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2002/07/owl#disjointWith'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'bnode', 'value': 't16159'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2002/07/owl#disjointWith'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}},\n",
      "                          {'obj': {'type': 'bnode', 'value': 't307419'},\n",
      "                           'pred': {'type': 'uri',\n",
      "                                    'value': 'http://www.w3.org/2002/07/owl#disjointWith'},\n",
      "                           'sub': {'type': 'uri',\n",
      "                                   'value': 'http://purl.obolibrary.org/obo/BFO_0000002'}}]}}\n"
     ]
    }
   ],
   "source": [
    "request = {\"query\": \"SELECT * WHERE { ?sub ?pred ?obj . } LIMIT 10\"}\n",
    "# use only application/json in format, any other formats will result in errors.\n",
    "try:\n",
    "    # help(api_instance.sparql_post)\n",
    "    api_response = api_instance.sparql_post(sparql_query_request=request, format='application/json')\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->sparql_post: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "2e383f49",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='agg_results'></a>\n",
    "#### Get aggregate results / statistics\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    age - (MinMax) (optional) (min = 1.0; max = 110.0)\n",
    "    bmi - (MinMax) (optional) (min = 13.0; max = 83.0)\n",
    "    cache - (boolean)  (optional) (defaults to True)\n",
    "    sex - (string)  (optional) (male, female, both)\n",
    "    technologies - (string) (optional) (List of technologies - api_instance.technology_names)\n",
    "    providers - (string) (optional) \n",
    "    ontology_terms - (string) (optional) \n",
    "    cell_type_terms - (string) (optional) \n",
    "    spatial - SpatialSearch(x, y, z, radius, target) (optional) \n",
    "    token - (string) (optional) \n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "20a78738",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[AggregateCount(label='Consortia', count=1),\n",
      " AggregateCount(label='Tissue Data Providers', count=1),\n",
      " AggregateCount(label='Donors', count=2),\n",
      " AggregateCount(label='Tissue Blocks', count=5),\n",
      " AggregateCount(label='Extraction Sites', count=5),\n",
      " AggregateCount(label='Tissue Sections', count=5),\n",
      " AggregateCount(label='Tissue Datasets', count=5)]\n"
     ]
    }
   ],
   "source": [
    "age = MinMax(min=45.0, max=60.0)\n",
    "bmi = MinMax(min=65.0, max=83.0)\n",
    "cache = True\n",
    "sex = \"female\"\n",
    "technologies = []\n",
    "providers = []\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0000955\",]\n",
    "cell_type_terms = [\"http://purl.obolibrary.org/obo/CL_0000000\",] \n",
    "spatial = [SpatialSearch(\n",
    "            x=84.0,\n",
    "            y=146.0,\n",
    "            z=53.0,\n",
    "            radius=12.0,\n",
    "            target=\"http://purl.org/ccf/latest/ccf.owl#VHFAllenBrain\",\n",
    "        ),]\n",
    "token = \"\"\n",
    "\n",
    "try:\n",
    "    api_response = api_instance.aggregate_results(age=age, bmi=bmi, cache=cache, ontology_terms=ontology_terms, cell_type_terms=cell_type_terms, providers=providers, sex=sex, spatial=spatial, technologies=technologies, token=token)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "bd967bab",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='spatial_entity'></a>\n",
    "#### Given a SpatialEntity already placed relative to a reference SpatialEntity retrieve a new direct SpatialPlacement to the given SpatialEntity IRI &#x274C;\n",
    "More Info : https://apps.humanatlas.io/hra-api/#/operations/get-spatial-placement\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    get_spatial_placement_request = {\n",
    "        \"target_iri\": (string) (required)\n",
    "        \"rui_location\": {\n",
    "            A Spatial Entity defines a bounded cartesian space and the units it is measured in.\n",
    "            It typically represents a real world thing, e.g., a human body, a human kidney, a tissue section,\n",
    "            or an individual cell.\n",
    "            \n",
    "            \"@id\": string<uri> (required)\n",
    "            \"@type\": (string) (required) (allowed value: SpatialEntity)\n",
    "            \n",
    "            \"entityId\": string<uri> (optional) (Identifier of the entity the spatial object represents)\n",
    "            \"ccf_annotations\": array[string]<uri> (optional) (Annotations attached to the entity.)\n",
    "            \"representation_of\": string<uri> (optional) (Identifier for the item the spatial object represents.)\n",
    "            \"reference_organ\": string<uri> (optional) (Identifier for the organ the spatial object represents.)\n",
    "            \n",
    "            \"creator\": (string) (optional)\n",
    "            \"creator_first_name\": (string) (optional)\n",
    "            \"creator_last_name\": (string) (optional)\n",
    "            \"creator_orcid\": (string) (optional)\n",
    "            \"creation_date\": (string)<date>,\n",
    "            \n",
    "            \"x_dimension\": (number) (required),\n",
    "            \"y_dimension\": (number) (required),\n",
    "            \"z_dimension\": (number) (required),\n",
    "            \"dimension_units\": (string) (required) (default: millimeters),\n",
    "            \n",
    "            \"label\": (string) (optional)\n",
    "            \"comment\": (string) (optional)\n",
    "            \"rui_rank\": (integer) (optional)\n",
    "            \"sex\": (string) (optional)\n",
    "            \"side\": (string) (optional) (Used for organs that come in pairs to distinguish between them, i.e. kidneys, etc)\n",
    "            \"slice_count\": (integer) (optional)\n",
    "            \"slice_thickness\": (number) (optional)\n",
    "            \n",
    "            \n",
    "            \"placement\": {\n",
    "                \"@id\": (string) (required),\n",
    "                \"@type\": (string) (required) (allowed value: SpatialEntity),\n",
    "                \"placement_date\": string<date>,\n",
    "                \"x_translation\": (number) (required),\n",
    "                \"y_translation\": (number) (required),\n",
    "                \"z_translation\": (number) (required),\n",
    "                \"translation_units\": (number) (required) (allowed value: millimeters),\n",
    "                \"x_rotation\": (number) (required),\n",
    "                \"y_rotation\": (number) (required),\n",
    "                \"z_rotation\": (number) (required),\n",
    "                \"rotation_units\": (string) (required) (allowed value: degree),\n",
    "                \"x_scaling\": (number) (required),\n",
    "                \"y_scaling\": (number) (required),\n",
    "                \"z_scaling\": (number)  (optional),\n",
    "                \"scaling_units\": (string) (required) (allowed value: degree),\n",
    "                \"target\": (string) (required),\n",
    "        }\n",
    "            \n",
    "        }\n",
    "    }\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "4de04419",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Exception when calling DefaultApi->get_spatial_placement: (404)\n",
      "Reason: Not Found\n",
      "HTTP response headers: HTTPHeaderDict({'Content-Type': 'application/json; charset=utf-8', 'Content-Length': '72', 'Connection': 'keep-alive', 'cache-control': 'no-cache', 'content-security-policy': \"base-uri 'self' cdn.humanatlas.io cdn.jsdelivr.net;script-src 'self' 'unsafe-inline' 'unsafe-eval' cdn.humanatlas.io cdn.jsdelivr.net unpkg.com www.googletagmanager.com;img-src 'self' 'unsafe-eval' cdn.humanatlas.io cdn.jsdelivr.net unpkg.com www.googletagmanager.com;connect-src *;default-src 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';object-src 'none';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests\", 'cross-origin-opener-policy': 'same-origin', 'cross-origin-resource-policy': 'same-origin', 'date': 'Thu, 05 Sep 2024 19:11:25 GMT', 'etag': 'W/\"48-LlldxmjVeDK3aB9pU7mbZaega1c\"', 'origin-agent-cluster': '?1', 'referrer-policy': 'no-referrer', 'strict-transport-security': 'max-age=15552000; includeSubDomains', 'x-content-type-options': 'nosniff', 'x-dns-prefetch-control': 'off', 'x-download-options': 'noopen', 'x-frame-options': 'SAMEORIGIN', 'x-permitted-cross-domain-policies': 'none', 'x-xss-protection': '0', 'x-envoy-upstream-service-time': '1194', 'server': 'envoy', 'X-Cache': 'Error from cloudfront', 'Via': '1.1 34ccac3e353c6f55648aa60d390f3c88.cloudfront.net (CloudFront)', 'X-Amz-Cf-Pop': 'ORD51-C4', 'Alt-Svc': 'h3=\":443\"; ma=86400', 'X-Amz-Cf-Id': 'dEGjcvo4CE54WzxZvwHiS54pyifRv3sIixPOdNVvki7bLhcfN2QU4w==', 'Vary': 'Origin'})\n",
      "HTTP response body: error='Placement path not found from rui_location to targetIri'\n",
      "\n",
      "\n"
     ]
    }
   ],
   "source": [
    "get_spatial_placement_request = {\n",
    "    \"target_iri\": \"http://purl.org/ccf/latest/ccf.owl#VHFemale\",\n",
    "    \"rui_location\": {\n",
    "        \"@id\": \"http://purl.org/ccf/1.5/f7130161-ad0a-4801-b5a4-f6297e0f1869\",\n",
    "        \"@type\": \"SpatialEntity\",\n",
    "        \"creator\": \"Bruce Herr\",\n",
    "        \"creator_first_name\": \"Bruce\",\n",
    "        \"creator_last_name\": \"Herr\",\n",
    "        \"creation_date\": \"2022-04-27\",\n",
    "        \"ccf_annotations\": [\"http://purl.obolibrary.org/obo/UBERON_0002015\", \"http://purl.obolibrary.org/obo/UBERON_0000362\", \"http://purl.obolibrary.org/obo/UBERON_0004200\", \"http://purl.obolibrary.org/obo/UBERON_0001225\", \"http://purl.obolibrary.org/obo/UBERON_0001284\", \"http://purl.obolibrary.org/obo/UBERON_0002189\"],\n",
    "        \"x_dimension\": 11,\n",
    "        \"y_dimension\": 12,\n",
    "        \"z_dimension\": 13,\n",
    "        \"dimension_units\": \"millimeter\",\n",
    "        \"placement\": {\n",
    "            \"@id\": \"http://purl.org/ccf/1.5/f7130161-ad0a-4801-b5a4-f6297e0f1869_placement\",\n",
    "            \"@type\": \"SpatialPlacement\",\n",
    "            \"target\": \"http://purl.org/ccf/latest/ccf.owl#VHFLeftKidneyV1.1\",\n",
    "            \"placement_date\": \"2022-04-27\",\n",
    "            \"x_scaling\": 1,\n",
    "            \"y_scaling\": 1,\n",
    "            \"z_scaling\": 1,\n",
    "            \"scaling_units\": \"ratio\",\n",
    "            \"x_rotation\": -61,\n",
    "            \"y_rotation\": 50,\n",
    "            \"z_rotation\": -84,\n",
    "            \"rotation_order\": \"XYZ\",\n",
    "            \"rotation_units\": \"degree\",\n",
    "            \"x_translation\": 20.149,\n",
    "            \"y_translation\": 109.963,\n",
    "            \"z_translation\": 38.79,\n",
    "            \"translation_units\": \"millimeter\"\n",
    "        }\n",
    "    }\n",
    "}\n",
    "try:\n",
    "    # Get spatial placement\n",
    "    api_response = api_instance.get_spatial_placement(get_spatial_placement_request)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->get_spatial_placement: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "0a2c6460",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='rui_loc'></a>\n",
    "#### Get all hubmap rui locations (if enabled)\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional)\n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "f15c90b1",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'@context': 'https://hubmapconsortium.github.io/ccf-ontology/ccf-context.jsonld',\n",
      " '@graph': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': ['Females (n=94) Mean Age 53.5 (range 21 - 70)',\n",
      "                       'Females (n=94), Mean Age 53.5 (range 21-70)'],\n",
      "             'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '2 x 2 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/3626fb05-6e59-4aa9-8d03-2b5e995b2522',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001626'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/3626fb05-6e59-4aa9-8d03-2b5e995b2522_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/3626fb05-6e59-4aa9-8d03-2b5e995b2522',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFBloodVasculature',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 113.174,\n",
      "                                                         'y_rotation': 4,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 494.659,\n",
      "                                                         'z_rotation': 34,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 91.963},\n",
      "                                           'x_dimension': 2,\n",
      "                                           'y_dimension': 2,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=146) Mean Age 54.3 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '2 x 2 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/7e05a1f1-fc08-4add-bd72-ffc11267c048',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001626'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/7e05a1f1-fc08-4add-bd72-ffc11267c048_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/7e05a1f1-fc08-4add-bd72-ffc11267c048',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMBloodVasculature',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 134.46,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 547.743,\n",
      "                                                         'z_rotation': -26,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 113.213},\n",
      "                                           'x_dimension': 2,\n",
      "                                           'y_dimension': 2,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Breast#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 9/17/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=297), Mean Age ? (range 20-79)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Breast_Mammary_Tissue',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Breast#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Breast#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 1/2/2023, Kristin '\n",
      "                                                 'Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Breast_Mammary_Tissue',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': 'Central breast subareolar region of '\n",
      "                                         'the right breast, 1-2 cm under the '\n",
      "                                         'skin surface of nipple region',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Breast#FDonors',\n",
      "                          'label': 'Registered 1/2/2023, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Breast_Mammary_Tissue',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/3b5d2036-3c56-4cf8-808f-462c9e3681e5',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0018140',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma58088',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma73118',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma73165',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma62102'],\n",
      "                                           'creation_date': '2023-02-03',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/3b5d2036-3c56-4cf8-808f-462c9e3681e5_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2023-02-03',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/3b5d2036-3c56-4cf8-808f-462c9e3681e5',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFRightMammaryGland',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 39.809,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 46.002,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 93.095},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=133) Mean Age 51.7 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/8e476601-a5e6-4d15-86a4-e6d3da9abb7e',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001157'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/8e476601-a5e6-4d15-86a4-e6d3da9abb7e_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/8e476601-a5e6-4d15-86a4-e6d3da9abb7e',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFColon',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -32,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 121.557,\n",
      "                                                         'y_rotation': 9,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 201.87,\n",
      "                                                         'z_rotation': -1,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 180.201},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=240) Mean Age 52.3 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/383d2c1a-4c8c-4aa3-b154-1ceacd3fa871',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001157'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/383d2c1a-4c8c-4aa3-b154-1ceacd3fa871_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/383d2c1a-4c8c-4aa3-b154-1ceacd3fa871',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMColon',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -30,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 130.858,\n",
      "                                                         'y_rotation': 1,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 359.481,\n",
      "                                                         'z_rotation': 17,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 191.877},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=259) Mean Age 50.3 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Colon_Transverse',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Colon_Transverse',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Colon_Transverse',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/fd7270d4-105a-4058-aece-2d2bb0668da2',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001159'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/fd7270d4-105a-4058-aece-2d2bb0668da2_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/fd7270d4-105a-4058-aece-2d2bb0668da2',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMColon',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -103,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 98.899,\n",
      "                                                         'y_rotation': 9,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 90.782,\n",
      "                                                         'z_rotation': -47,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 112.922},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=136) Mean Age 55 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/cc1251a4-d367-4bb1-b2d9-05ae33209f0d',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000948',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002084',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/cc1251a4-d367-4bb1-b2d9-05ae33209f0d_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/cc1251a4-d367-4bb1-b2d9-05ae33209f0d',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -32,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 149.806,\n",
      "                                                         'y_rotation': 55,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 40.112,\n",
      "                                                         'z_rotation': 38,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 80.223},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=293) Mean Age 56.4 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/676e549a-6234-48ee-b7cb-82258c17054b',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002084'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/676e549a-6234-48ee-b7cb-82258c17054b_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/676e549a-6234-48ee-b7cb-82258c17054b',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -35,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 115.691,\n",
      "                                                         'y_rotation': 52,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 29.602,\n",
      "                                                         'z_rotation': 31,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 90.093},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=138) Mean Age 53.2 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/a04e60c6-693a-4c25-a069-62521783fd15',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000948',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002078',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002080',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/a04e60c6-693a-4c25-a069-62521783fd15_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/a04e60c6-693a-4c25-a069-62521783fd15',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -32,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 27.221,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 81.047,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 83.766},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=294) Mean Age 54.9 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/f6512db4-2809-4ffe-864d-ace61789dff6',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002078',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002080'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/f6512db4-2809-4ffe-864d-ace61789dff6_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/f6512db4-2809-4ffe-864d-ace61789dff6',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -38,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 29.389,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 85.271,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 60.132},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 9/17/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=19) Mean Age 56.4 (range 30 - 69)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': 'kidney cortex',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0004200'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLeftKidney',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -50,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 20.254,\n",
      "                                                         'y_rotation': 6,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 102.631,\n",
      "                                                         'z_rotation': 82,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 40.782},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=66) Mean Age 56.3 (range 27 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 4/4/2023, Kristin '\n",
      "                                                 'Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors',\n",
      "                          'label': 'Registered 4/4/2023, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0004200'],\n",
      "                                           'creation_date': '2023-05-05',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2023-05-05',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMLeftKidney',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -74,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 26.06,\n",
      "                                                         'y_rotation': 9,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 100.019,\n",
      "                                                         'z_rotation': 80,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 26.704},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Liver#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=65) Mean Age 54.8 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Liver#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Liver#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Liver#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/f6203770-64ee-40cc-b7b2-339f1ae491cc',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001114',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15729'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/f6203770-64ee-40cc-b7b2-339f1ae491cc_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/f6203770-64ee-40cc-b7b2-339f1ae491cc',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLiver',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 59.038,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 134.762,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 101.244},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Liver#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=161) Mean Age 54.5 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Liver#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Liver#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Liver#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/74370757-0cd2-44e5-83d8-47eb550c441a',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001114',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15729'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/74370757-0cd2-44e5-83d8-47eb550c441a_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/74370757-0cd2-44e5-83d8-47eb550c441a',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMLiver',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 56.201,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 145.242,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 135.274},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Lung#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=183) Mean Age 53.7 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Lung#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Lung#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/21/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 10 millimeter, 10 '\n",
      "                                         'millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Lung#FDonors',\n",
      "                          'label': 'Registered 8/21/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ab9cafec-3eff-49ac-b2a9-ba96c22d80f9',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002048',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002185',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0003406'],\n",
      "                                           'creation_date': '2021-09-22',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ab9cafec-3eff-49ac-b2a9-ba96c22d80f9_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-22',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ab9cafec-3eff-49ac-b2a9-ba96c22d80f9',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLung',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 183.956,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 197.605,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 71.67},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 10},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Lung#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=395) Mean Age 54.1 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Lung#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Lung#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/21/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 10 millimeter, 10 '\n",
      "                                         'millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Lung#MDonors',\n",
      "                          'label': 'Registered 8/21/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ab2e49b2-1959-44af-8e83-ac16878f6c12',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002048',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002168',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0008952',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma7385',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma7386',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma7426'],\n",
      "                                           'creation_date': '2021-09-22',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ab2e49b2-1959-44af-8e83-ac16878f6c12_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-22',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ab2e49b2-1959-44af-8e83-ac16878f6c12',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMLung',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 160.02,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 213.664,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 78.402},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 10},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Ovary#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=180) Mean Age 50.2 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Ovary',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Ovary#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Ovary#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Ovary',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 3 millimeter, 3 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Ovary#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Ovary',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/e137f366-a936-4357-945a-929d1d682890',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.org/sig/ont/fma/fma7214'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/e137f366-a936-4357-945a-929d1d682890_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/e137f366-a936-4357-945a-929d1d682890',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLeftOvary',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -14,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 7.827,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 12.79,\n",
      "                                                         'z_rotation': -14,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 5.267},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 3},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Pancreas#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=121) Mean Age 52.1 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Pancreas#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/232b6561-19ed-4da3-a61e-286245f42f25',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001069',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001150',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14517'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/232b6561-19ed-4da3-a61e-286245f42f25_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/232b6561-19ed-4da3-a61e-286245f42f25',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFPancreas',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 68.55,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 40.634,\n",
      "                                                         'z_rotation': -13,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 62.717},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Pancreas#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=207) Mean Age 50.3 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Pancreas#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/d386cdea-8d3c-46a2-9900-fbd5237cba80',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001069',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001150',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14517'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/d386cdea-8d3c-46a2-9900-fbd5237cba80_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/d386cdea-8d3c-46a2-9900-fbd5237cba80',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMPancreas',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 46.818,\n",
      "                                                         'y_rotation': 24,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 48.012,\n",
      "                                                         'z_rotation': 29,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 66.82},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Prostate#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=245) Mean Age 50.6 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Prostate',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Prostate#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Prostate#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Prostate',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Prostate#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Prostate',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/5475ae38-db50-4868-92ba-8718bf136c7b',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000999',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002367',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0006947',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_8410026',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_8410027'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/5475ae38-db50-4868-92ba-8718bf136c7b_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/5475ae38-db50-4868-92ba-8718bf136c7b',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMProstate',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 37.882,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 16.321,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 17.244},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=193) Mean Age 53.3 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/2185217b-77ed-4043-b79b-1c2d33b6d524',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/2185217b-77ed-4043-b79b-1c2d33b6d524_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/2185217b-77ed-4043-b79b-1c2d33b6d524',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 530.092,\n",
      "                                                         'y_rotation': -44,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 721.462,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 221.009},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=411) Mean Age 53.3 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ece78b3e-635e-45d1-8217-35fd50392cce',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ece78b3e-635e-45d1-8217-35fd50392cce_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ece78b3e-635e-45d1-8217-35fd50392cce',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 591.656,\n",
      "                                                         'y_rotation': -30,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 851.01,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 244.41},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=234) Mean Age 52.9 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/6f04ffad-3b9d-4c1c-afc0-fd203b02e5a3',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/6f04ffad-3b9d-4c1c-afc0-fd203b02e5a3_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/6f04ffad-3b9d-4c1c-afc0-fd203b02e5a3',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 15,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 620.063,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 381.198,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 86.714},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=467) Mean Age 52.9 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/cce37703-e4e8-454c-a0c4-4ff58652ab8f',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/cce37703-e4e8-454c-a0c4-4ff58652ab8f_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/cce37703-e4e8-454c-a0c4-4ff58652ab8f',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 20,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 678.414,\n",
      "                                                         'y_rotation': 13,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 479.517,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 65.16},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=67) Mean Age 48.6 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/18/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '6 x 6 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors',\n",
      "                          'label': 'Registered 0/18/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ec1cc18d-9a48-4c09-a720-2b54c3f83bd9',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002116',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14966'],\n",
      "                                           'creation_date': '2022-01-19',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ec1cc18d-9a48-4c09-a720-2b54c3f83bd9_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-19',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ec1cc18d-9a48-4c09-a720-2b54c3f83bd9',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSmallIntestine',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 16.348,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 67.85,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 42.23},\n",
      "                                           'x_dimension': 6,\n",
      "                                           'y_dimension': 6,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=120) Mean Age 48.4 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/18/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors',\n",
      "                          'label': 'Registered 0/18/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/d237fd29-749e-4734-a925-d36e5d1db31d',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002116',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14966'],\n",
      "                                           'creation_date': '2022-01-19',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/d237fd29-749e-4734-a925-d36e5d1db31d_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-19',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/d237fd29-749e-4734-a925-d36e5d1db31d',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSmallIntestine',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 28.138,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 87.211,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 58.237},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Spleen#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=87) Mean Age 49.7 (range 23 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Spleen#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ed9bc73e-ab9c-4bb1-8b96-4ecd1f12c7a7',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001248',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15828',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15837'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ed9bc73e-ab9c-4bb1-8b96-4ecd1f12c7a7_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ed9bc73e-ab9c-4bb1-8b96-4ecd1f12c7a7',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSpleen',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 57.678,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 51.661,\n",
      "                                                         'z_rotation': 48,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 37.735},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Spleen#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=154) Mean Age 49.9 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin  Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Spleen#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin  Ardlie, '\n",
      "                                   'GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ec2488fb-6ff5-4f43-82b5-9704a650d00a',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001248',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15828',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15837'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin  Ardlie',\n",
      "                                           'creator_first_name': 'Kristin ',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ec2488fb-6ff5-4f43-82b5-9704a650d00a_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ec2488fb-6ff5-4f43-82b5-9704a650d00a',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSpleen',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 78.064,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 78.666,\n",
      "                                                         'z_rotation': 49,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 42.816},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Uterus#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=142) Mean Age 47.8 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Uterus',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Uterus#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Uterus#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Uterus',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 3 millimeter, 3 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Uterus#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Uterus',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/220036fa-2932-4f00-aad6-3f70c516c1c4',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.org/sig/ont/fma/fma17561',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma224876',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma224878'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/220036fa-2932-4f00-aad6-3f70c516c1c4_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/220036fa-2932-4f00-aad6-3f70c516c1c4',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFUterus',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -38,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 26.774,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 39.166,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 50.848},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 3},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'}]}\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.gtex_rui_locations(cache = True)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "6e6fc39a",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='ontology_term'></a>\n",
    "#### Get number of ontology term occurrences for a search\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    age - (MinMax) (optional) (min = 1.0; max = 110.0)\n",
    "    bmi - (MinMax) (optional) (min = 13.0; max = 83.0)\n",
    "    cache - (boolean)  (optional) (defaults to True)\n",
    "    sex - (string)  (optional) (male, female, both)\n",
    "    technologies - (string) (optional) (List of technologies - api_instance.technology_names)\n",
    "    providers - (string) (optional) \n",
    "    ontology_terms - (string) (optional) \n",
    "    cell_type_terms - (string) (optional) \n",
    "    spatial - SpatialSearch(x, y, z, radius, target) (optional) \n",
    "    token - (string) (optional) \n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "dabe4526",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'http://purl.obolibrary.org/obo/UBERON_0000955': 5,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002581': 5,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002661': 4,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002703': 5,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0002813': 5,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0006093': 1,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0013702': 5,\n",
      " 'http://purl.obolibrary.org/obo/UBERON_0035932': 4}\n"
     ]
    }
   ],
   "source": [
    "age = MinMax(min=45.0, max=60.0)\n",
    "bmi = MinMax(min=65.0, max=83.0)\n",
    "cache = True\n",
    "sex = \"female\"\n",
    "technologies = []\n",
    "providers = []\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0000955\",]\n",
    "cell_type_terms = [\"http://purl.obolibrary.org/obo/CL_0000000\",] \n",
    "spatial = [SpatialSearch(\n",
    "            x=84.0,\n",
    "            y=146.0,\n",
    "            z=53.0,\n",
    "            radius=12.0,\n",
    "            target=\"http://purl.org/ccf/latest/ccf.owl#VHFAllenBrain\",\n",
    "        ),]\n",
    "token = \"\"\n",
    "\n",
    "try:\n",
    "    api_response = api_instance.ontology_term_occurences(age=age, bmi=bmi, cache=cache, ontology_terms=ontology_terms, cell_type_terms=cell_type_terms, providers=providers, sex=sex, spatial=spatial, technologies=technologies, token=token)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "ae1132cc",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='cell_term_occ'></a>\n",
    "#### Get number of cell type term occurrences for a search\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    age - (MinMax) (optional) (min = 1.0; max = 110.0)\n",
    "    bmi - (MinMax) (optional) (min = 13.0; max = 83.0)\n",
    "    cache - (boolean)  (optional) (defaults to True)\n",
    "    sex - (string)  (optional) (male, female, both)\n",
    "    technologies - (string) (optional) (List of technologies - api_instance.technology_names)\n",
    "    providers - (string) (optional) \n",
    "    ontology_terms - (string) (optional) \n",
    "    cell_type_terms - (string) (optional) \n",
    "    spatial - SpatialSearch(x, y, z, radius, target) (optional) \n",
    "    token - (string) (optional) \n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "db1e1ebd",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'http://purl.obolibrary.org/obo/CL_0000000': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000057': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000065': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000084': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000127': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000128': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000129': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000236': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000402': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000540': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000576': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000623': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000644': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000679': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0000706': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0002453': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0002604': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0002605': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0010012': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0012000': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_0012001': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_1001474': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023008': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023009': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023012': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023013': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023039': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023057': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023059': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023060': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023061': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023062': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023063': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023064': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023068': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023072': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023074': 5,\n",
      " 'http://purl.obolibrary.org/obo/CL_4023079': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015001': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015002': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015003': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015004': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015005': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015006': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015007': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015008': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015009': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015010': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015011': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015012': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015013': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015014': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015015': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015016': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015017': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015018': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015019': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015020': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015021': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015022': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015023': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015024': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015025': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015026': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015027': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015028': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015029': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015030': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015031': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015032': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015033': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015034': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015035': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015036': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015037': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015038': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015039': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015040': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015041': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015042': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015043': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015044': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015045': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015046': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015047': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015048': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015049': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015050': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015051': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015052': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015053': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015054': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015055': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015056': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015057': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015058': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015059': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015060': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015061': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015062': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015063': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015064': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015065': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015066': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015067': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015068': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015069': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015070': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015071': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015072': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015073': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015074': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015075': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015076': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015077': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015078': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015079': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015080': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015081': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015082': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015083': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015084': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015085': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015086': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015087': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015088': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015089': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015090': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015091': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015092': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015093': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015094': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015095': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015096': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015097': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015098': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015099': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015100': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015101': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015102': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015103': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015104': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015105': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015106': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015107': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015108': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015109': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015110': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015111': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015112': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015113': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015114': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015115': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015116': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015117': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015118': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015119': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015120': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015121': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015122': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015123': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015124': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015125': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015126': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0015127': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051005': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051006': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051007': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051008': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051009': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051010': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051011': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051012': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051013': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051014': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051015': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051016': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051017': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051018': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051019': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051020': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051021': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051022': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051023': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051024': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051025': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051026': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051027': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051028': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051029': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051030': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051031': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051032': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051033': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051034': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051035': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051036': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051037': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051038': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051039': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051040': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051041': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051042': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051043': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051044': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051045': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051046': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051047': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051048': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051049': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051050': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051051': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051053': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051054': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051055': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051056': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051057': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051058': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051059': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051060': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051061': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051062': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051063': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051064': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051065': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051066': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051067': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051068': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051069': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051070': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051071': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051072': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051073': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051074': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051075': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051076': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051077': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051078': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051079': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051080': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051081': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051082': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051083': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051084': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051085': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051086': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051087': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051088': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051089': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051090': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051091': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051092': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051093': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051094': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051095': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051096': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051097': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051098': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051099': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051100': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051101': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051102': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051103': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051104': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051105': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051106': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051107': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051108': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051109': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051110': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051111': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051112': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051113': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051114': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051115': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051116': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051117': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051118': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051119': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051120': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051121': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051122': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051123': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051124': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051125': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051126': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051127': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051128': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051129': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051130': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051131': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051132': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051133': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051134': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051135': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051136': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051137': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051138': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051139': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051140': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051141': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051142': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051143': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051144': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051145': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051146': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051147': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051148': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051149': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051150': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051151': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051152': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051153': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051154': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051155': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051156': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051157': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051158': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051159': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051160': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051161': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051162': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051163': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051164': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051165': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051166': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051167': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051168': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051169': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051170': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051171': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051172': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051173': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051174': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051175': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051176': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051177': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051178': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051179': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051180': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051181': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051182': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051183': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051184': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051185': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051186': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051187': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051188': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051189': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051190': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051191': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051192': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051193': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051194': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051195': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051196': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051197': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051198': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051199': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051200': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051201': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051202': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051203': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051204': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051205': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051206': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051207': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051208': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051209': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051210': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051211': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051212': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051213': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051214': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051215': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051216': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051217': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051218': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051219': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051220': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051221': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051222': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051223': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051224': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051225': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051226': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051227': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051228': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051229': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051230': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051231': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051232': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051233': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051234': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051235': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051236': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051237': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051238': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051239': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051240': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051241': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051242': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051243': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051244': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051245': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051246': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051247': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051248': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051249': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051250': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051251': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051252': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051253': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051254': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051255': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051256': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051257': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051258': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051259': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051260': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051261': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051262': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051263': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051264': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051265': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051266': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051267': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051268': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051269': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051270': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051271': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051272': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051273': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051274': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051275': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051276': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051277': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051278': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051279': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051280': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051281': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051282': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051283': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051284': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051285': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051286': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051287': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051288': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051289': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051290': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051291': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051292': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051293': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051294': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051295': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051296': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051297': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051298': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051299': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051300': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051301': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051302': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051303': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051304': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051305': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051306': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051307': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051308': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051309': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051310': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051311': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051312': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051313': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051314': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051315': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051316': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051317': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051318': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051319': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051320': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051321': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051322': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051323': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051324': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051325': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051326': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051327': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051328': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051329': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051330': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051331': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051332': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051333': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051334': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051335': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051336': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051337': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051338': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051339': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051340': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051341': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051342': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051343': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051344': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051345': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051346': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051347': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051348': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051349': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051350': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051351': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051352': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051353': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051354': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051355': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051356': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051357': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051358': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051359': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051360': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051361': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051362': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051363': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051364': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051365': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051366': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051367': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051368': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051369': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051370': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051371': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051372': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051373': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051374': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051375': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051376': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051377': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051378': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051379': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051380': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051381': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051382': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051383': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051384': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051385': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051386': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051387': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051388': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051389': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051390': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051391': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051392': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051393': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051394': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051395': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051396': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051397': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051398': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051399': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051400': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051401': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051402': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051403': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051404': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051405': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051406': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051407': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051408': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051409': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051410': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051411': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051412': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051413': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051414': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051415': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051416': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051417': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051418': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051419': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051420': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051421': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051422': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051423': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051424': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051425': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051426': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051427': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051428': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051429': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051430': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051431': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051432': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051433': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051434': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051435': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051436': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051437': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051438': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051439': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051440': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051441': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051442': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051443': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051444': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051445': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051446': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051447': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051448': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051449': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051450': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051451': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051452': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051453': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051454': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051455': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051456': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051457': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051458': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051459': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051460': 5,\n",
      " 'http://purl.obolibrary.org/obo/PCL_0051461': 5,\n",
      " 'https://purl.org/ccf/ASCTB-TEMP_bgl51': 5}\n"
     ]
    }
   ],
   "source": [
    "age = MinMax(min=45.0, max=60.0)\n",
    "bmi = MinMax(min=65.0, max=83.0)\n",
    "cache = True\n",
    "sex = \"female\"\n",
    "technologies = []\n",
    "providers = []\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0000955\",]\n",
    "cell_type_terms = [\"http://purl.obolibrary.org/obo/CL_0000000\",] \n",
    "spatial = [SpatialSearch(\n",
    "            x=84.0,\n",
    "            y=146.0,\n",
    "            z=53.0,\n",
    "            radius=12.0,\n",
    "            target=\"http://purl.org/ccf/latest/ccf.owl#VHFAllenBrain\",\n",
    "        ),]\n",
    "token = \"\"\n",
    "\n",
    "try:\n",
    "    api_response = api_instance.cell_type_term_occurences(age=age, bmi=bmi, cache=cache, ontology_terms=ontology_terms, cell_type_terms=cell_type_terms, providers=providers, sex=sex, spatial=spatial, technologies=technologies, token=token)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "0e8bd39d",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='ontology_nodes'></a>\n",
    "#### Get ontology term tree nodes\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional)\n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "7d5e5dd0",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "('root', 'http://purl.obolibrary.org/obo/UBERON_0013702')\n",
      "('nodes',\n",
      " {'http://purl.obolibrary.org/obo/UBERON_0000002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': ['http://purl.obolibrary.org/obo/UBERON_0013761', 'http://purl.obolibrary.org/obo/UBERON_0012247', 'https://purl.org/ccf/ASCTB-TEMP_cervical-mucosa', 'https://purl.org/ccf/ASCTB-TEMP_cervical-os', 'https://purl.org/ccf/ASCTB-TEMP_cervical-squamo-columnar-junction', 'http://purl.obolibrary.org/obo/UBERON_0004801', 'http://purl.obolibrary.org/obo/UBERON_0012249', 'http://purl.obolibrary.org/obo/UBERON_0000458'], 'synonymLabels': ['cervical canal of uterus', 'canalis cervicis uteri', 'caudal segment of uterus', 'cervix uteri', 'neck of uterus'], 'label': 'uterine cervix'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000006', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000016', 'children': [], 'synonymLabels': ['islet of Langerhans', 'pancreatic insula', 'pancreatic islet'], 'label': 'islet of langerhans'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000010', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001016', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000045', 'http://purl.obolibrary.org/obo/UBERON_0001810', 'http://purl.obolibrary.org/obo/UBERON_0002211', 'http://purl.obolibrary.org/obo/UBERON_0001780'], 'synonymLabels': ['pars peripherica', 'systema nervosum periphericum'], 'label': 'peripheral nervous system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000016', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001978', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000006'], 'synonymLabels': ['pars endocrina pancreatis'], 'label': 'endocrine pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000017', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001978', 'children': ['http://purl.obolibrary.org/obo/UBERON_2005346', 'http://purl.obolibrary.org/obo/UBERON_0001263', 'http://purl.obolibrary.org/obo/UBERON_0007329'], 'synonymLabels': ['pars exocrina pancreatis'], 'label': 'exocrine pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000029', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000029', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002194', 'http://purl.obolibrary.org/obo/UBERON_0002006', 'http://purl.obolibrary.org/obo/UBERON_0035495', 'http://purl.obolibrary.org/obo/UBERON_0002509', 'http://purl.obolibrary.org/obo/UBERON_0005463'], 'synonymLabels': [], 'label': 'lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000035': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000035', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000035', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'children': [], 'synonymLabels': ['folliculus ovaricus primarius', 'ovary primary follicle', 'primary follicle of ovary'], 'label': 'primary ovarian follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000036', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'children': [], 'synonymLabels': ['folliculus ovaricus secondarius', 'ovary secondary follicle', 'pre-antral follicle', 'preantral follicle', 'secondary follicle of ovary'], 'label': 'secondary ovarian follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000038', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000039', 'children': [], 'synonymLabels': ['liquor follicularis', 'liquor folliculi', 'ovary follicle fluid'], 'label': 'follicular fluid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000039', 'parent': 'http://purl.obolibrary.org/obo/UBERON_2001571', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000038'], 'synonymLabels': ['antrum folliculare', 'ovarian follicle antrum', 'antral cavity'], 'label': 'follicular antrum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000044': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000044', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000044', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001800', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002834', 'http://purl.org/sig/ont/fma/fma6009', 'http://purl.obolibrary.org/obo/UBERON_0002836', 'http://purl.obolibrary.org/obo/UBERON_0002837', 'http://purl.obolibrary.org/obo/UBERON_0002835'], 'synonymLabels': ['ganglion of dorsal root', 'ganglion spinalis', 'spinal ganglion', 'spinal ganglion part of peripheral nervous system'], 'label': 'dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000045': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000045', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000045', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000010', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001805', 'http://purl.obolibrary.org/obo/UBERON_0001800'], 'synonymLabels': [], 'label': 'ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000052': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000052', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000052', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': ['fornix of brain', 'brain fornix', 'cerebral fornix', 'forebrain fornix', 'fornix of neuraxis', 'neuraxis fornix'], 'label': 'fornix'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000055': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000055', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000055', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': [], 'label': 'vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000056', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000056', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001223', 'http://purl.obolibrary.org/obo/UBERON_0005005', 'http://purl.obolibrary.org/obo/UBERON_0001222', 'http://purl.obolibrary.org/obo/UBERON_0036376'], 'synonymLabels': [], 'label': 'ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001245', 'http://purl.obolibrary.org/obo/UBERON_0001154', 'http://purl.obolibrary.org/obo/UBERON_0001156', 'http://purl.obolibrary.org/obo/UBERON_0001153', 'http://purl.obolibrary.org/obo/UBERON_0001158', 'http://purl.obolibrary.org/obo/UBERON_0022277', 'http://purl.obolibrary.org/obo/UBERON_0000569', 'http://purl.obolibrary.org/obo/UBERON_0000159', 'http://purl.obolibrary.org/obo/UBERON_0001052', 'http://purl.obolibrary.org/obo/UBERON_0001159', 'http://purl.obolibrary.org/obo/UBERON_0022276', 'http://purl.obolibrary.org/obo/UBERON_0001157'], 'synonymLabels': [], 'label': 'large intestine'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000065', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000065', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001004', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001558', 'http://purl.obolibrary.org/obo/UBERON_0001557'], 'synonymLabels': [], 'label': 'respiratory tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000074', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001229', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004190'], 'synonymLabels': ['renal glomeruli'], 'label': 'renal glomerulus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000079', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000990', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010147'], 'synonymLabels': ['genitalia of male organism', 'male genital system', 'male genitalia', 'male genitals', 'male organism genitalia', 'male organism reproductive system', 'reproductive system of male organism'], 'label': 'male reproductive system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000086': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000086', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000086', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003982', 'children': [], 'synonymLabels': [], 'label': 'zona pellucida'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000114', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000114', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002048', 'children': [], 'synonymLabels': ['connective tissue of lung', 'pulmonary interstitium'], 'label': 'lung connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000144': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000144', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000144', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['humeral trochlea', 'trochlea humeri'], 'label': 'trochlea of humerus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000155': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000155', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000155', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007180', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000156', 'http://purl.obolibrary.org/obo/UBERON_0000157'], 'synonymLabels': ['layer of theca cells', 'ovary theca', 'theca cell layer of ovarian follicle', 'theca of follicle', 'thecal cell layer'], 'label': 'theca cell layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000156': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000156', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000156', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000155', 'children': [], 'synonymLabels': ['ovary theca externa', 'theca externa (folliculus ovaricus tertiarius)', 'tunica externa of theca folliculi'], 'label': 'theca externa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000157', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000157', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000155', 'children': [], 'synonymLabels': ['ovary theca interna', 'theca interna (folliculus ovaricus tertiarius)', 'tunica interna of theca folliculi'], 'label': 'theca interna'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000159': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000159', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000159', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003342', 'http://purl.obolibrary.org/obo/UBERON_0012489', 'http://purl.obolibrary.org/obo/UBERON_0003329'], 'synonymLabels': ['anal canal', 'anal canal viewed anatomically', 'anatomical anal canal'], 'label': 'proximal anal canal'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000170': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000170', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000170', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001558', 'children': [], 'synonymLabels': ['lungs', 'lungs pair', 'pulmones', 'set of lungs'], 'label': 'pair of lungs'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000178': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000178', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000178', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002390', 'children': [], 'synonymLabels': ['portion of blood', 'vertebrate blood'], 'label': 'blood'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000209': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000209', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'children': ['https://purl.org/ccf/ASCTB-TEMP_frontal-crest-of-frontal-bone', 'https://purl.org/ccf/ASCTB-TEMP_frontal-sinus-of-frontal-bone', 'https://purl.org/ccf/ASCTB-TEMP_glabella-of-frontal-bone', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-frontal-bone', 'https://purl.org/ccf/ASCTB-TEMP_lacrimal-fossa-of-frontal-bone', 'http://purl.org/sig/ont/fma/fma57131', 'https://purl.org/ccf/ASCTB-TEMP_supercilary-arch-of-frontal-bone', 'http://purl.org/sig/ont/fma/fma53097', 'https://purl.org/ccf/ASCTB-TEMP_supraorbital-notch-or-foramen-of-frontal-bone', 'http://purl.obolibrary.org/obo/UBERON_0012109'], 'synonymLabels': ['tetrapod frontal bone'], 'label': 'frontal bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000210': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000210', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'children': ['https://purl.org/ccf/ASCTB-TEMP_granula-foveaolae-of-parietal-bone', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-middle-meningeal-a-of-parietal-bone', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-parietal-bone', 'http://purl.org/sig/ont/fma/fma53132', 'http://purl.org/sig/ont/fma/fma53130', 'https://purl.org/ccf/ASCTB-TEMP_temporal-fossa-of-parietal-bone'], 'synonymLabels': ['tetrapod parietal bone'], 'label': 'parietal bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000303', 'parent': 'http://purl.org/sig/ont/fma/fma22439', 'children': [], 'synonymLabels': ['adductor longus'], 'label': 'adductor longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000305': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000305', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000305', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002331', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003254', 'http://purl.obolibrary.org/obo/UBERON_0003262'], 'synonymLabels': ['amnios'], 'label': 'amnion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000314', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000314', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001153', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005636', 'http://purl.obolibrary.org/obo/UBERON_0022281', 'http://purl.obolibrary.org/obo/UBERON_0011189'], 'synonymLabels': ['cecum mucosa', 'mucous membrane of cecum', 'mucous membrane of intestinum crassum caecum', 'organ mucosa of caecum', 'organ mucosa of cecum', 'organ mucosa of intestinum crassum caecum', 'caecum mucosa', 'caecum mucosa of organ', 'caecum mucous membrane', 'caecum organ mucosa', 'cecal mucosa', 'cecum mucosa of organ', 'cecum mucous membrane', 'cecum organ mucosa', 'intestinum crassum caecum mucosa', 'intestinum crassum caecum mucosa of organ', 'intestinum crassum caecum mucous membrane', 'intestinum crassum caecum organ mucosa', 'mucosa of caecum', 'mucosa of cecum', 'mucosa of intestinum crassum caecum', 'mucosa of organ of caecum', 'mucosa of organ of cecum', 'mucosa of organ of intestinum crassum caecum', 'mucous membrane of caecum'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000317', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000317', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001052', 'children': ['http://purl.obolibrary.org/obo/UBERON_0013485', 'http://purl.obolibrary.org/obo/UBERON_0011184', 'http://purl.obolibrary.org/obo/UBERON_0001962'], 'synonymLabels': ['colon mucous membrane', 'colonic mucosa', 'colonic mucous membrane', 'large bowel mucosa', 'mucosa of colon', 'mucosa of large bowel', 'colon mucosa'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000320', 'parent': 'http://purl.org/sig/ont/fma/fma7206', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008346', 'http://purl.obolibrary.org/obo/UBERON_0015834', 'http://purl.obolibrary.org/obo/UBERON_0012494'], 'synonymLabels': ['doudenal mucosa', 'duodenal mucous membrane', 'mucosa of duodenum', 'mucous membrane of duodenum', 'duodenal mucosa'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000331', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002116', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008345', 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-gut-associated-lymphoid-tissue-galt-', 'https://purl.org/ccf/ASCTB-TEMP_muscularis-mucosa'], 'synonymLabels': ['ileal mucous membrane', 'ileum mucosa', 'ileum mucosa of organ', 'ileum mucous membrane', 'ileum organ mucosa', 'mucosa of ileum', 'mucosa of organ of ileum', 'mucous membrane of ileum', 'organ mucosa of ileum', 'ileal mucosa'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000348': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000348', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000348', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001645', 'children': ['http://purl.org/sig/ont/fma/fma52638', 'http://purl.obolibrary.org/obo/UBERON_0000942', 'http://purl.obolibrary.org/obo/UBERON_0011096', 'http://purl.org/sig/ont/fma/fma52628', 'http://purl.org/sig/ont/fma/fma52625'], 'synonymLabels': ['cranial nerve V, branch V1', 'first branch of fifth cranial nerve', 'first division of fifth cranial nerve', 'first division of trigeminal nerve', 'nervus ophthalmicus (V1)', 'nervus ophthalmicus (Va)', 'nervus ophthalmicus [v1]', 'nervus ophthalmicus [va]', 'ophthalmic division [V1]', 'ophthalmic division [Va]', 'ophthalmic division of fifth cranial nerve', 'ophthalmic division of trigeminal nerve (V1)', 'ophthalmic division of trigeminal nerve (Va)', 'ophthalmic nerve [V1]', 'ophthalmic nerve [Va]', 'opthalmic nerve', 'ramus opthalmicus profundus (ramus V1)', 'rostral branch of trigeminal nerve', 'trigeminal V nerve ophthalmic division'], 'label': 'ophthalmic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000362': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000362', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000362', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001294', 'http://purl.obolibrary.org/obo/UBERON_0004201', 'http://purl.obolibrary.org/obo/UBERON_0004202', 'http://purl.obolibrary.org/obo/UBERON_0004200'], 'synonymLabels': ['kidney medulla', 'medulla of kidney', 'medulla renalis', 'pyramides renales', 'renal medullae', 'renal medullae set', 'renal pyramids', 'renal pyramids set'], 'label': 'renal medulla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000368': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000368', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000368', 'parent': 'http://purl.org/sig/ont/fma/fma22439', 'children': [], 'synonymLabels': ['musculus adductos brevis', 'adductor brevis'], 'label': 'adductor brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000370': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000370', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000370', 'parent': 'http://purl.org/sig/ont/fma/fma22439', 'children': ['https://purl.org/ccf/ASCTB-TEMP_hamstring-portion-of-adductor-magnus-muscle'], 'synonymLabels': ['adductor magnus'], 'label': 'adductor magnus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000372': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000372', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000372', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_dorsum-of-foot-muscle', 'children': [], 'synonymLabels': ['extensor digitorum brevis', 'extensor digitorum brevis pes'], 'label': 'extensor digitorum brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000375': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000375', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001645', 'children': ['http://purl.org/sig/ont/fma/fma53000', 'http://purl.org/sig/ont/fma/fma53056', 'http://purl.org/sig/ont/fma/fma53071', 'http://purl.org/sig/ont/fma/fma53100', 'http://purl.org/sig/ont/fma/fma53075', 'http://purl.org/sig/ont/fma/fma53066', 'http://purl.org/sig/ont/fma/fma53187', 'http://purl.obolibrary.org/obo/UBERON_0003721', 'http://purl.org/sig/ont/fma/fma53218', 'http://purl.org/sig/ont/fma/fma53103', 'http://purl.org/sig/ont/fma/fma53047'], 'synonymLabels': ['inferior maxillary nerve', 'mandibular division [V3]', 'mandibular division [Vc]', 'mandibular division of fifth cranial nerve', 'mandibular division of trigeminal nerve [Vc; V3]', 'mandibular nerve [V3]', 'mandibular nerve [Vc]', 'nervus mandibularis [v3]', 'nervus mandibularis [Vc; V3]', 'nervus mandibularis [vc]', 'ramus mandibularis (ramus V3)', 'third division of fifth cranial nerve', 'third division of trigeminal nerve', 'trigeminal V nerve mandibular division'], 'label': 'mandibular nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000377': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000377', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001645', 'children': ['http://purl.org/sig/ont/fma/fma52802', 'http://purl.org/sig/ont/fma/fma52978', 'http://purl.org/sig/ont/fma/fma52782', 'http://purl.org/sig/ont/fma/fma52805', 'http://purl.org/sig/ont/fma/fma52783', 'http://purl.org/sig/ont/fma/fma52728', 'http://purl.obolibrary.org/obo/UBERON_0008810', 'http://purl.org/sig/ont/fma/fma52754', 'http://purl.org/sig/ont/fma/fma77524', 'http://purl.org/sig/ont/fma/fma52731', 'http://purl.org/sig/ont/fma/fma52797', 'http://purl.org/sig/ont/fma/fma52930', 'http://purl.org/sig/ont/fma/fma52967'], 'synonymLabels': ['maxillary division [V2]', 'maxillary division [Vb]', 'maxillary division of fifth cranial nerve', 'maxillary division of trigeminal nerve (Vb; V2)', 'maxillary nerve [V2]', 'maxillary nerve [Vb]', 'nervus maxillaris (Vb; V2)', 'nervus maxillaris [v2]', 'nervus maxillaris [vb]', 'ramus maxillaris (ramus V2)', 'second division of fifth cranial nerve', 'second division of trigeminal nerve', 'trigeminal V nerve maxillary division'], 'label': 'maxillary nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000381': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000381', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000381', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012378', 'children': [], 'synonymLabels': ['detrusor', 'detrusor muscle', 'detrusor muscle of bladder', 'detrusor smooth muscle', 'detrusor urinae muscle', 'muscularis propria of the urinary bladder', 'musculus detrusor vesicae', 'urinary bladder detrusor muscle', 'urinary bladder detrussor smooth muscle'], 'label': 'urinary bladder detrusor smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000383', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011216', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002378', 'http://purl.obolibrary.org/obo/UBERON_0001499', 'http://purl.obolibrary.org/obo/UBERON_0002324', 'http://purl.obolibrary.org/obo/UBERON_0002426', 'http://purl.obolibrary.org/obo/UBERON_0002376', 'http://purl.obolibrary.org/obo/UBERON_0018254'], 'synonymLabels': ['musculature of body', 'muscle system', 'muscle system of body', 'musculature system', 'set of all muscles', 'set of muscles of body', 'vertebrate muscular system'], 'label': 'muscular system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000389': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000389', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000389', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000965', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-cortex', 'https://purl.org/ccf/ASCTB-TEMP_outer-cortex'], 'synonymLabels': ['cortex of lens', 'lens cortex'], 'label': 'cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000390', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000390', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000965', 'children': [], 'synonymLabels': ['nucleus of lens', 'lens nucleus'], 'label': 'embryonic nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000397', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000397', 'parent': '', 'children': [], 'synonymLabels': ['colonic epithelium', 'colon epithelial tissue', 'colon epithelium', 'epithelial tissue of colon', 'epithelial tissue of large bowel', 'epithelium of colon', 'epithelium of large bowel', 'large bowel epithelial tissue', 'large bowel epithelium', 'posterior intestine epithelium'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000399': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000399', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000399', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002115', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000400', 'http://purl.obolibrary.org/obo/UBERON_0016519'], 'synonymLabels': ['jejunal mucous membrane', 'jejunum mucosa', 'jejunum mucosa of organ', 'jejunum mucous membrane', 'jejunum organ mucosa', 'mucosa of jejunum', 'mucosa of organ of jejunum', 'mucous membrane of jejunum', 'organ mucosa of jejunum', 'jejunal mucosa'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000400': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000400', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000400', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000399', 'children': [], 'synonymLabels': ['epithelium of jejunum', 'jejunal epithelium'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000423': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000423', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000423', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['eccrine sweat gland', 'glandula sudorifera eccrina', 'glandula sudorifera merocrina', 'eccrine (sweat) glands'], 'label': 'eccrine (sweat) gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000428': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000428', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000428', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002367', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004179'], 'synonymLabels': ['epithelial tissue of prostate', 'epithelial tissue of prostate gland', 'epithelium of prostate', 'epithelium of prostate gland', 'epithelium of prostatic gland', 'prostate epithelial tissue', 'prostate gland epithelial tissue', 'prostate gland epithelium', 'prostatic epithelium', 'prostatic gland epithelium'], 'label': 'prostate epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000429': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000429', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000429', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002439'], 'synonymLabels': ['enteric nerve plexus', 'intrinsic nerve plexus', 'plexus entericus', 'plexus nervosus entericus', 'sympathetic enteric nerve plexus'], 'label': 'enteric plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000435': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000435', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000435', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001898', 'children': [], 'synonymLabels': ['lateral tuberal nucleus', 'lateral tuberal hypothalamic nuclei', 'lateral tuberal nuclear complex', 'lateral tuberal nuclei'], 'label': 'tuberal region'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000442', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000442', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001330', 'https://purl.org/ccf/ASCTB-TEMP_vein-of-ductus-deferens'], 'synonymLabels': ['right spermatic vein', 'vena testicularis (adrenalis) dextra'], 'label': 'right testicular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000443': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000443', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000443', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001142', 'children': [], 'synonymLabels': ['left spermatic vein'], 'label': 'left testicular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000450': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000450', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000450', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': [], 'synonymLabels': ['corpus albicans of ovary'], 'label': 'corpus albicans'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000458': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000458', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000458', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': ['https://purl.org/ccf/ASCTB-TEMP_columnar-cell-of-endocervix', 'http://purl.obolibrary.org/obo/UBERON_0012252', 'https://purl.org/ccf/ASCTB-TEMP_endocervical-stroma', 'https://purl.org/ccf/ASCTB-TEMP_internal-cervical-os'], 'synonymLabels': [], 'label': 'endocervix'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000474': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000474', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000474', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000990', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004175'], 'synonymLabels': ['female organism genitalia', 'female organism reproductive system', 'genitalia of female organism', 'reproductive system of female organism'], 'label': 'female reproductive system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000482': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000482', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000482', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009752', 'children': [], 'synonymLabels': ['basal lamina of connective tissue', 'basal lamina of epithelium', 'basal lamina'], 'label': 'basal epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000569': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000569', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000569', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': ['valva ileocaecalis (valva ilealis)'], 'label': 'ileocecal valve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000935': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000935', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000935', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': ['anterior cerebral commissure', 'commissura anterior cerebri', 'commissura rostralis'], 'label': 'anterior commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000942', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000942', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000348', 'children': ['http://purl.obolibrary.org/obo/UBERON_0022300'], 'synonymLabels': ['frontal nerve'], 'label': 'frontal nerve (branch of ophthalmic)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000945': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000945', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000945', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004921', 'children': [], 'synonymLabels': [], 'label': 'stomach'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000946': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000946', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000946', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002137', 'http://purl.obolibrary.org/obo/UBERON_0002135', 'http://purl.obolibrary.org/obo/UBERON_0002146', 'http://purl.obolibrary.org/obo/UBERON_0002134'], 'synonymLabels': ['cardiac valve', 'heart valve', 'valve of heart'], 'label': 'cardial valve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000947': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000947', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000947', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001496'], 'synonymLabels': ['trunk of aortic tree', 'trunk of systemic arterial tree'], 'label': 'aorta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000948': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000948', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0011820', 'http://purl.obolibrary.org/obo/UBERON_0000946', 'http://purl.obolibrary.org/obo/UBERON_0002348', 'http://purl.obolibrary.org/obo/UBERON_0002079', 'http://purl.obolibrary.org/obo/UBERON_0002084', 'http://purl.obolibrary.org/obo/UBERON_0002078', 'http://purl.obolibrary.org/obo/UBERON_0002080', 'http://purl.obolibrary.org/obo/UBERON_0002094'], 'synonymLabels': ['chambered heart', 'vertebrate heart'], 'label': 'heart'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000950': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000950', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000950', 'parent': 'http://purl.org/sig/ont/fma/fma22439', 'children': [], 'synonymLabels': ['gracilis', 'musculus gracilis'], 'label': 'gracilis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000955', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001890', 'http://purl.obolibrary.org/obo/UBERON_0002028', 'http://purl.obolibrary.org/obo/UBERON_0001891'], 'synonymLabels': [], 'label': 'brain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000956': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000956', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': ['http://purl.obolibrary.org/obo/UBERON_0016525', 'http://purl.obolibrary.org/obo/UBERON_0002022', 'http://purl.obolibrary.org/obo/UBERON_0002600', 'http://purl.obolibrary.org/obo/UBERON_0002021', 'http://purl.obolibrary.org/obo/UBERON_0001872', 'http://purl.obolibrary.org/obo/UBERON_0001871'], 'synonymLabels': ['cortex of cerebral hemisphere'], 'label': 'cerebral cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000961': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000961', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001807', 'children': ['http://purl.org/sig/ont/fma/fma6481', 'http://purl.org/sig/ont/fma/fma6484', 'http://purl.org/sig/ont/fma/fma6478', 'http://purl.org/sig/ont/fma/fma6477', 'http://purl.org/sig/ont/fma/fma6482', 'http://purl.org/sig/ont/fma/fma6475', 'http://purl.org/sig/ont/fma/fma6480', 'http://purl.org/sig/ont/fma/fma6479', 'http://purl.org/sig/ont/fma/fma6483', 'http://purl.org/sig/ont/fma/fma6476', 'http://purl.org/sig/ont/fma/fma6485'], 'synonymLabels': ['ganglion of thorax', 'ganglion thoracicum splanchnicum', 'thoracic paravertebral ganglion', 'thoracic splanchnic ganglion', 'thoracic sympathetic ganglion', 'thorax ganglion'], 'label': 'thoracic ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000962', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'children': ['http://purl.org/sig/ont/fma/fma6449', 'http://purl.org/sig/ont/fma/fma6446', 'http://purl.org/sig/ont/fma/fma6440', 'http://purl.org/sig/ont/fma/fma6445', 'http://purl.org/sig/ont/fma/fma6443', 'http://purl.org/sig/ont/fma/fma6448', 'http://purl.org/sig/ont/fma/fma6447', 'http://purl.org/sig/ont/fma/fma6444'], 'synonymLabels': ['cervical nerve', 'cervical nerve tree', 'cervical spinal nerve', 'nervus cervicalis'], 'label': 'nerve of cervical vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000964', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003952', 'http://purl.obolibrary.org/obo/UBERON_0001985', 'http://purl.obolibrary.org/obo/UBERON_0001772'], 'synonymLabels': ['cornea of camera-type eye'], 'label': 'cornea'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000965': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000965', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000965', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006762', 'http://purl.obolibrary.org/obo/UBERON_0000389', 'http://purl.obolibrary.org/obo/UBERON_0000390', 'http://purl.obolibrary.org/obo/UBERON_0001803', 'http://purl.obolibrary.org/obo/UBERON_0002444'], 'synonymLabels': ['camera-type eye lens', 'eye lens', 'lens crystallina', 'lens of camera-type eye'], 'label': 'lens'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000966': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000966', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001791', 'http://purl.obolibrary.org/obo/UBERON_0001789', 'http://purl.obolibrary.org/obo/UBERON_0001792', 'http://purl.obolibrary.org/obo/UBERON_0001782', 'http://purl.obolibrary.org/obo/UBERON_0004864', 'http://purl.obolibrary.org/obo/UBERON_0002203'], 'synonymLabels': ['inner layer of eyeball', 'retina of camera-type eye', 'tunica interna of eyeball'], 'label': 'retina'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000970': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000970', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001775', 'http://purl.obolibrary.org/obo/UBERON_0001811', 'http://purl.obolibrary.org/obo/UBERON_0000964', 'http://purl.obolibrary.org/obo/UBERON_0001769', 'http://purl.obolibrary.org/obo/UBERON_0002276', 'http://purl.obolibrary.org/obo/UBERON_0004548', 'http://purl.obolibrary.org/obo/UBERON_0000965', 'http://purl.obolibrary.org/obo/UBERON_0004904', 'http://purl.obolibrary.org/obo/UBERON_0001783', 'http://purl.obolibrary.org/obo/UBERON_0000966', 'http://purl.obolibrary.org/obo/UBERON_0004549'], 'synonymLabels': [], 'label': 'eye'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000975': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000975', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sternal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7541', 'https://purl.org/ccf/ASCTB-TEMP_costal-notches-of-sternum', 'http://purl.org/sig/ont/fma/fma7542', 'http://purl.obolibrary.org/obo/UBERON_0002205', 'https://purl.org/ccf/ASCTB-TEMP_sternal-angle-of-sternum', 'https://purl.org/ccf/ASCTB-TEMP_sternal-body-of-sternum', 'https://purl.org/ccf/ASCTB-TEMP_transverse-ridges-of-sternum', 'http://purl.org/sig/ont/fma/fma7488'], 'synonymLabels': ['vertebrate sternum'], 'label': 'sternum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000976': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000976', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone', 'children': ['http://purl.org/sig/ont/fma/fma23356', 'http://purl.obolibrary.org/obo/UBERON_0010853', 'https://purl.org/ccf/ASCTB-TEMP_coronoid-fossa-of-humerus', 'http://purl.org/sig/ont/fma/fma23418', 'http://purl.org/sig/ont/fma/fma23390', 'http://purl.org/sig/ont/fma/fma13304', 'http://purl.org/sig/ont/fma/fma23396', 'http://purl.org/sig/ont/fma/fma23442', 'http://purl.org/sig/ont/fma/fma23436', 'http://purl.obolibrary.org/obo/UBERON_0011188', 'http://purl.org/sig/ont/fma/fma23441', 'http://purl.org/sig/ont/fma/fma23435', 'https://purl.org/ccf/ASCTB-TEMP_olecranon-fossa-of-humerus', 'https://purl.org/ccf/ASCTB-TEMP_radial-fossa-of-humerus', 'https://purl.org/ccf/ASCTB-TEMP_radial-groove-of-humerus', 'http://purl.org/sig/ont/fma/fma13305', 'http://purl.org/sig/ont/fma/fma23359', 'http://purl.obolibrary.org/obo/UBERON_0000144'], 'synonymLabels': ['humerus bone', 'humeri'], 'label': 'humerus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000979': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000979', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterolateral-tubercle-of-tibia', 'https://purl.org/ccf/ASCTB-TEMP_fibular-facet-of-tibia', 'https://purl.org/ccf/ASCTB-TEMP_fibular-notch-of-tibia', 'http://purl.org/sig/ont/fma/fma43761', 'https://purl.org/ccf/ASCTB-TEMP_interosseus-border-of-tibia', 'http://purl.obolibrary.org/obo/UBERON_0009991', 'http://purl.obolibrary.org/obo/UBERON_0009990', 'https://purl.org/ccf/ASCTB-TEMP_medial-malleolus-of-tibia', 'http://purl.org/sig/ont/fma/fma33125', 'https://purl.org/ccf/ASCTB-TEMP_soleal-line-of-tibia', 'https://purl.org/ccf/ASCTB-TEMP_tibial-plateau-of-tibia', 'https://purl.org/ccf/ASCTB-TEMP_tibial-tuberosity-of-tibia'], 'synonymLabels': ['shankbone', 'shinbone'], 'label': 'tibia'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000981': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000981', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', 'children': ['http://purl.org/sig/ont/fma/fma32870', 'https://purl.org/ccf/ASCTB-TEMP_gluteal-tuberosity-of-femur', 'http://purl.org/sig/ont/fma/fma32852', 'http://purl.obolibrary.org/obo/UBERON_0006767', 'http://purl.org/sig/ont/fma/fma43748', 'https://purl.org/ccf/ASCTB-TEMP_intercondylar-notch-of-femur', 'http://purl.org/sig/ont/fma/fma43706', 'http://purl.obolibrary.org/obo/UBERON_0009985', 'http://purl.obolibrary.org/obo/UBERON_0009986', 'http://purl.org/sig/ont/fma/fma43718', 'http://purl.org/sig/ont/fma/fma32853', 'http://purl.org/sig/ont/fma/fma43715', 'http://purl.obolibrary.org/obo/UBERON_0009984', 'http://purl.obolibrary.org/obo/UBERON_0009987', 'http://purl.org/sig/ont/fma/fma43719', 'http://purl.obolibrary.org/obo/UBERON_0007119', 'https://purl.org/ccf/ASCTB-TEMP_pectinal-line-of-femur', 'http://purl.org/sig/ont/fma/fma75328', 'http://purl.org/sig/ont/fma/fma43709', 'http://purl.org/sig/ont/fma/fma32847', 'http://purl.org/sig/ont/fma/fma43703'], 'synonymLabels': ['thigh bone'], 'label': 'femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000985': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000985', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001587', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001411', 'http://purl.obolibrary.org/obo/UBERON_0001413', 'http://purl.obolibrary.org/obo/UBERON_0001106', 'https://purl.org/ccf/ASCTB-TEMP_circumflex-humeral-vein', 'http://purl.obolibrary.org/obo/UBERON_0002088', 'http://purl.obolibrary.org/obo/UBERON_0001420', 'http://purl.org/sig/ont/fma/fma23058', 'http://purl.obolibrary.org/obo/UBERON_0002089'], 'synonymLabels': ['vena axillaris'], 'label': 'axillary vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000988': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000988', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000988', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019263', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002151', 'http://purl.obolibrary.org/obo/UBERON_0003023'], 'synonymLabels': ['pons of Varolius', 'pons Varolii'], 'label': 'pons'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000990', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000474', 'http://purl.obolibrary.org/obo/UBERON_0000079'], 'synonymLabels': [], 'label': 'reproductive system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000992': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000992', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-ovary', 'http://purl.org/sig/ont/fma/fma18652', 'https://purl.org/ccf/ASCTB-TEMP_lateral-ovary', 'http://purl.org/sig/ont/fma/fma7214', 'https://purl.org/ccf/ASCTB-TEMP_medial-ovary', 'http://purl.obolibrary.org/obo/UBERON_0001342', 'http://purl.obolibrary.org/obo/UBERON_0008847', 'http://purl.org/sig/ont/fma/fma7213'], 'synonymLabels': ['animal ovary', 'female gonad', 'female organism genitalia gonad', 'female organism genitalia gonada', 'female organism reproductive system gonad', 'female organism reproductive system gonada', 'female reproductive system gonad', 'female reproductive system gonada', 'genitalia of female organism gonad', 'genitalia of female organism gonada', 'gonad of female organism genitalia', 'gonad of female organism reproductive system', 'gonad of female reproductive system', 'gonad of genitalia of female organism', 'gonad of reproductive system of female organism', 'gonada of female organism genitalia', 'gonada of female organism reproductive system', 'gonada of female reproductive system', 'gonada of genitalia of female organism', 'gonada of reproductive system of female organism', 'ovum-producing ovary', 'reproductive system of female organism gonad', 'reproductive system of female organism gonada'], 'label': 'ovary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0000995': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0000995', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009853', 'http://purl.obolibrary.org/obo/UBERON_0012332', 'http://purl.org/sig/ont/fma/fma17561', 'https://purl.org/ccf/ASCTB-TEMP_inferior-uterine-vein', 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'https://purl.org/ccf/ASCTB-TEMP_superior-uterine-vein', 'http://purl.obolibrary.org/obo/UBERON_0000002', 'http://purl.obolibrary.org/obo/UBERON_0008889'], 'synonymLabels': [], 'label': 'uterus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001003', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001003', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002097', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008198', 'http://purl.obolibrary.org/obo/UBERON_0002025', 'http://purl.obolibrary.org/obo/UBERON_0002027', 'http://purl.obolibrary.org/obo/UBERON_0002069', 'http://purl.obolibrary.org/obo/UBERON_0002026'], 'synonymLabels': ['vertebrate epidermis', 'skin epidermis'], 'label': 'epidermis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001004', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001004', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002048', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000065'], 'synonymLabels': ['apparatus respiratorius'], 'label': 'respiratory system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001007', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001007', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001555'], 'synonymLabels': [], 'label': 'digestive system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001008', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001008', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8450002', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001556'], 'synonymLabels': ['systema urinaria', 'systema urinarium', 'urinary system', 'urinary tract'], 'label': 'renal system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004535'], 'synonymLabels': [], 'label': 'circulatory system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001013', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004791', 'children': [], 'synonymLabels': ['fat', 'fat tissue', 'fatty tissue'], 'label': 'adipose tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001016', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001017', 'http://purl.obolibrary.org/obo/UBERON_0000010'], 'synonymLabels': ['neurological system'], 'label': 'nervous system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001017', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001016', 'children': [], 'synonymLabels': ['CNS', 'systema nervosum centrale'], 'label': 'central nervous system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001279', 'children': ['http://purl.obolibrary.org/obo/UBERON_0034728', 'http://purl.obolibrary.org/obo/UBERON_0001785', 'http://purl.obolibrary.org/obo/UBERON_0005303', 'http://purl.org/sig/ont/fma/fma6942', 'http://purl.obolibrary.org/obo/UBERON_0035650', 'http://purl.obolibrary.org/obo/UBERON_8410062', 'http://purl.obolibrary.org/obo/UBERON_0001884', 'http://purl.obolibrary.org/obo/UBERON_0011390', 'http://purl.obolibrary.org/obo/UBERON_0003715'], 'synonymLabels': ['nerves', 'peripheral nerve'], 'label': 'nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001043': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001043', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001043', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004921', 'children': [], 'synonymLabels': ['gullet', 'oesophagus'], 'label': 'esophagus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001052': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001052', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001052', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000317'], 'synonymLabels': ['terminal portion of intestine'], 'label': 'rectum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001064', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007329', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004913', 'http://purl.obolibrary.org/obo/UBERON_0004915', 'http://purl.obolibrary.org/obo/UBERON_0014716', 'http://purl.obolibrary.org/obo/UBERON_0012271'], 'synonymLabels': ['ventral pancreatic duct', 'chief pancreatic duct', 'duct of Wirsung', 'main pancreatic duct'], 'label': 'main pancreatic duct (duct of wirsung)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001069', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001069', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009708', 'children': ['http://purl.org/sig/ont/fma/fma14517', 'http://purl.obolibrary.org/obo/UBERON_0007324', 'http://purl.obolibrary.org/obo/UBERON_0010373'], 'synonymLabels': ['pancreas head', 'pancreatic head', 'right extremity of pancreas'], 'label': 'head of pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001070', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001070', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001616', 'http://purl.obolibrary.org/obo/UBERON_0001613', 'http://purl.obolibrary.org/obo/UBERON_0014694', 'http://purl.obolibrary.org/obo/UBERON_0001614', 'http://purl.obolibrary.org/obo/UBERON_0007150'], 'synonymLabels': ['external carotid', 'lesser palatine artery'], 'label': 'external carotid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001071', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012324', 'children': [], 'synonymLabels': ['superficial branch of transverse cervical artery'], 'label': 'superficial cervical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001139', 'http://purl.org/sig/ont/fma/fma21388', 'http://purl.obolibrary.org/obo/UBERON_0011955', 'http://purl.obolibrary.org/obo/UBERON_0001142', 'http://purl.org/sig/ont/fma/fma70889', 'http://purl.obolibrary.org/obo/UBERON_0011957', 'http://purl.obolibrary.org/obo/UBERON_0001140', 'http://purl.org/sig/ont/fma/fma21387', 'http://purl.obolibrary.org/obo/UBERON_0011956', 'http://purl.org/sig/ont/fma/fma68069', 'http://purl.org/sig/ont/fma/fma14342', 'http://purl.obolibrary.org/obo/UBERON_0001141', 'http://purl.obolibrary.org/obo/UBERON_0035435', 'http://purl.obolibrary.org/obo/UBERON_0000442'], 'synonymLabels': ['posterior vena cava', 'inferior caval vein'], 'label': 'inferior vena cava'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001092': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001092', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-arch-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_anterior-tubercle-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-vertebral-artery-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_inferior-vertebral-notch-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_lamina-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_posterior-arch-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_posterior-tubercle-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-cervical-vertebra'], 'synonymLabels': ['atlas', 'atlas (CI)', 'atlas [C I]', 'atlas vertebra', 'C1 vertebra', 'cervical atlas', 'first cervical vertebra', 'vertebra 1', 'vertebral bone 1'], 'label': 'cervical vertebra 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001093': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001093', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_body-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-second-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26527', 'https://purl.org/ccf/ASCTB-TEMP_lamina-of-second-cervical-vertebra', 'http://purl.obolibrary.org/obo/UBERON_0004096', 'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-second-cervical-vertebra'], 'synonymLabels': ['axis (CII)', 'axis [C II]', 'axis vertebra', 'cervical axis', 'vertebra 2', 'vertebral bone 2'], 'label': 'cervical vertebra 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001094', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001094', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001130', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003690'], 'synonymLabels': ['sacral segment', 'segment of sacrum'], 'label': 'sacral vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001095', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001095', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001130', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001350'], 'synonymLabels': ['caudal vertebrae', 'caudal vertebral bone', 'caudal vertebral bone element', 'coccygeal segment', 'coccygeal vertebra', 'fused tail vertebra'], 'label': 'caudal vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001100', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001100', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001495', 'children': [], 'synonymLabels': ['pectoralis minor'], 'label': 'pectoralis minor muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001101': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001101', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001587', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001104', 'http://purl.obolibrary.org/obo/UBERON_0006199', 'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-retromandibular-vein', 'http://purl.obolibrary.org/obo/UBERON_0035249', 'http://purl.org/sig/ont/fma/fma14319', 'http://purl.org/sig/ont/fma/fma50858'], 'synonymLabels': ['external jugular venous tree'], 'label': 'external jugular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001104': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001104', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001104', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'children': ['http://purl.org/sig/ont/fma/fma50855', 'https://purl.org/ccf/ASCTB-TEMP_small-thyroid-vein', 'https://purl.org/ccf/ASCTB-TEMP_superficial-submandibular-vein'], 'synonymLabels': ['anterior external jugular vein'], 'label': 'anterior jugular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001105': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001105', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007829', 'children': ['http://purl.org/sig/ont/fma/fma23300', 'http://purl.org/sig/ont/fma/fma23340', 'http://purl.org/sig/ont/fma/fma23322', 'http://purl.org/sig/ont/fma/fma23294', 'http://purl.obolibrary.org/obo/UBERON_0006805', 'http://purl.org/sig/ont/fma/fma23334', 'http://purl.org/sig/ont/fma/fma23343', 'http://purl.org/sig/ont/fma/fma23325'], 'synonymLabels': ['clavicle', 'clavicula', 'collar bone', 'collarbone'], 'label': 'clavicle bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001106', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001106', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': ['http://purl.org/sig/ont/fma/fma67977'], 'synonymLabels': ['cephalic vein of forearm', 'vena cephalica antebrachii'], 'label': 'cephalic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001107', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008523', 'children': [], 'synonymLabels': ['sternohyoideus', 'm. sternohyoideus', 'sternohyoid', 'sternohyoideus muscle'], 'label': 'sternohyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001108', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001108', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008523', 'children': ['http://purl.org/sig/ont/fma/fma46341', 'http://purl.org/sig/ont/fma/fma46340'], 'synonymLabels': ['omohyoid', 'omohyoideus', 'omohyoideus muscle'], 'label': 'omohyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001109': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001109', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001109', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008523', 'children': [], 'synonymLabels': ['sternothyroid'], 'label': 'sternothyroid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001110': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001110', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001110', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008523', 'children': [], 'synonymLabels': ['thyrohyoid'], 'label': 'thyrohyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001112': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001112', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001112', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'children': [], 'synonymLabels': ['dorsal latissimus muscle', 'latissimi dorsi', 'latissimus dorsi', 'musculus latissimus dorsi'], 'label': 'latissimus dorsi muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001122': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001122', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001122', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle', 'children': [], 'synonymLabels': ['scalenus medius', 'medial scalene muscle', 'middle scalene', 'musculus scalenus medius'], 'label': 'scalenus medius muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001125', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001125', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['serratus ventralis', \"Boxer's muscle\", 'serratus anterior', 'serratus ventralis muscle'], 'label': 'serratus anterior muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001128': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001128', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001128', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.org/sig/ont/fma/fma45776', 'http://purl.org/sig/ont/fma/fma13460'], 'synonymLabels': ['sternocleidomastoid', 'sterno-mastoid', 'sternomastoid', 'sternomastoid muscle'], 'label': 'sternocleidomastoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001129': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001129', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001129', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['subscapularis'], 'label': 'subscapularis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001130': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001130', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001130', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005944', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001095', 'http://purl.obolibrary.org/obo/UBERON_0002413', 'http://purl.obolibrary.org/obo/UBERON_0002414', 'http://purl.obolibrary.org/obo/UBERON_0001094', 'http://purl.obolibrary.org/obo/UBERON_0002347'], 'synonymLabels': [], 'label': 'vertebral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001138': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001138', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': ['http://purl.org/sig/ont/fma/fma0329300', 'http://purl.obolibrary.org/obo/UBERON_0001217', 'http://purl.obolibrary.org/obo/UBERON_0001219', 'http://purl.obolibrary.org/obo/UBERON_0001216', 'http://purl.obolibrary.org/obo/UBERON_0001218', 'http://purl.org/sig/ont/fma/fma0329301', 'http://purl.obolibrary.org/obo/UBERON_8410018', 'http://purl.org/sig/ont/fma/fma15397'], 'synonymLabels': [], 'label': 'superior mesenteric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001139': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001139', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001139', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001316', 'http://purl.obolibrary.org/obo/UBERON_0001320', 'http://purl.obolibrary.org/obo/UBERON_0001317', 'http://purl.obolibrary.org/obo/UBERON_0006687'], 'synonymLabels': ['common iliac venous tree'], 'label': 'common iliac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001140': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001140', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001140', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['https://purl.org/ccf/ASCTB-TEMP_segmental-renal-vein'], 'synonymLabels': ['kidney vein', 'renal venous tree', 'vein of kidney'], 'label': 'renal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001141': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001141', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001141', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': [], 'label': 'right renal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001142': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001142', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001142', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['http://purl.org/sig/ont/fma/fma68070', 'http://purl.org/sig/ont/fma/fma14347', 'http://purl.obolibrary.org/obo/UBERON_0035483', 'http://purl.obolibrary.org/obo/UBERON_0000443'], 'synonymLabels': [], 'label': 'left renal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001145': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001145', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001145', 'parent': 'http://purl.org/sig/ont/fma/fma18652', 'children': [], 'synonymLabels': ['female reproductive system gonad vein', 'female reproductive system gonada vein', 'gonad of female reproductive system vein', 'gonada of female reproductive system vein', 'ovary vein', 'vein of female reproductive system gonad', 'vein of female reproductive system gonada', 'vein of gonad of female reproductive system', 'vein of gonada of female reproductive system', 'vein of ovary'], 'label': 'ovarian vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001148': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001148', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma44822', 'http://purl.org/sig/ont/fma/fma80279', 'http://purl.org/sig/ont/fma/fma44824', 'http://purl.org/sig/ont/fma/fma44826', 'http://purl.org/sig/ont/fma/fma80273', 'http://purl.org/sig/ont/fma/fma44825', 'http://purl.org/sig/ont/fma/fma44823', 'http://purl.org/sig/ont/fma/fma80267', 'http://purl.org/sig/ont/fma/fma80225', 'http://purl.obolibrary.org/obo/UBERON_0016430'], 'synonymLabels': [], 'label': 'median nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001150': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001150', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001150', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009708', 'children': [], 'synonymLabels': ['pancreas body', 'pancreatic body'], 'label': 'body of pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001151': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001151', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001151', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009708', 'children': [], 'synonymLabels': ['left extremity of pancreas', 'pancreas tail', 'pancreatic tail'], 'label': 'tail of pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001153': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001153', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001153', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000314', 'http://purl.obolibrary.org/obo/UBERON_0004927'], 'synonymLabels': ['caecum', 'intestinum crassum caecum'], 'label': 'cecum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001154': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001154', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001154', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004989', 'http://purl.obolibrary.org/obo/UBERON_0012498', 'http://purl.obolibrary.org/obo/UBERON_0004928'], 'synonymLabels': ['appendix vermiformis', 'caecal appendix', 'cecal appendix', 'vermiform appendix'], 'label': 'appendix'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001156': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001156', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001156', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': ['colon ascendens'], 'label': 'ascending colon'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001157', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001157', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': ['colon transversum'], 'label': 'transverse colon'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001158': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001158', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001158', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': ['colon descendens'], 'label': 'descending colon'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001159': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001159', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001159', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': [], 'label': 'sigmoid colon'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001174': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001174', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001174', 'parent': 'http://purl.obolibrary.org/obo/UBERON_2005346', 'children': [], 'synonymLabels': ['ductus choledochus (biliaris)'], 'label': 'common bile duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001182', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005628', 'http://purl.obolibrary.org/obo/UBERON_0001197', 'http://purl.obolibrary.org/obo/UBERON_0001195', 'http://purl.obolibrary.org/obo/UBERON_0018255', 'http://purl.obolibrary.org/obo/UBERON_0001196', 'http://purl.obolibrary.org/obo/UBERON_8410023'], 'synonymLabels': ['superior mesenteric arterial tree'], 'label': 'superior mesenteric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001183', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001183', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410022', 'http://purl.obolibrary.org/obo/UBERON_0035180', 'http://purl.obolibrary.org/obo/UBERON_0035040'], 'synonymLabels': ['inferior mesenteric arterial tree'], 'label': 'inferior mesenteric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001184', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['http://purl.org/sig/ont/fma/fma70501', 'http://purl.org/sig/ont/fma/fma70500', 'http://purl.org/sig/ont/fma/fma70502', 'http://purl.obolibrary.org/obo/UBERON_0002056', 'http://purl.org/sig/ont/fma/fma70503', 'http://purl.org/sig/ont/fma/fma70494', 'http://purl.org/sig/ont/fma/fma70499', 'http://purl.obolibrary.org/obo/UBERON_0003468'], 'synonymLabels': ['renal arterial tree'], 'label': 'renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001185': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001185', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001185', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['right renal arterial tree'], 'label': 'right renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001186': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001186', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001186', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['left renal arterial tree'], 'label': 'left renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001187': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001187', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001187', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['testicular arterial tree'], 'label': 'testicular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001188', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['right spermatic artery', 'trunk of right testicular arterial tree'], 'label': 'right testicular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001189', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001189', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['left spermatic artery', 'trunk of left testicular arterial tree'], 'label': 'left testicular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001190': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001190', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001190', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['ovarian arterial tree'], 'label': 'ovarian artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001191': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001191', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001191', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001308', 'http://purl.obolibrary.org/obo/UBERON_0001309'], 'synonymLabels': ['common iliac arterial tree'], 'label': 'common iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001192', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001192', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001640', 'children': ['http://purl.org/sig/ont/fma/fma71544'], 'synonymLabels': [], 'label': 'left gastric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001193', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001193', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001279', 'children': [], 'synonymLabels': ['arteria hepatica propria'], 'label': 'hepatic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001194': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001194', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001248', 'children': ['http://purl.org/sig/ont/fma/fma14793', 'http://purl.org/sig/ont/fma/fma14787', 'http://purl.org/sig/ont/fma/fma14792', 'https://purl.org/ccf/ASCTB-TEMP_inferior-lobar-artery-of-spleen', 'http://purl.obolibrary.org/obo/UBERON_0035830', 'https://purl.org/ccf/ASCTB-TEMP_lobar-artery-of-spleen', 'http://purl.org/sig/ont/fma/fma70471', 'http://purl.org/sig/ont/fma/fma14794', 'https://purl.org/ccf/ASCTB-TEMP_superior-lobar-artery-of-spleen'], 'synonymLabels': ['lienal artery', 'arteria splenica'], 'label': 'splenic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001195', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001195', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'children': ['http://purl.org/sig/ont/fma/fma70479', 'http://purl.org/sig/ont/fma/fma70480'], 'synonymLabels': ['inferior pancreatico-duodenal artery'], 'label': 'inferior pancreaticoduodenal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001196', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'children': [], 'synonymLabels': [], 'label': 'middle colic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001197': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001197', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001197', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'children': ['http://purl.org/sig/ont/fma/fma14820', 'http://purl.org/sig/ont/fma/fma14819'], 'synonymLabels': [], 'label': 'ileocolic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001198', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001198', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012255', 'children': [], 'synonymLabels': ['superior adrenal branch of inferior phrenic artery', 'superior suprarenal branch of inferior phrenic artery', 'arteriae suprarenales superiores'], 'label': 'superior suprarenal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001214': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001214', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001214', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003713', 'children': [], 'synonymLabels': ['pancreatic vein'], 'label': 'pancreatic tributary of splenic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001215', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001215', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003713', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410017', 'https://purl.org/ccf/ASCTB-TEMP_rectosigmoid-vein', 'http://purl.org/sig/ont/fma/fma15395', 'http://purl.org/sig/ont/fma/fma15393'], 'synonymLabels': [], 'label': 'inferior mesenteric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001216': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001216', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001216', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': [], 'synonymLabels': [], 'label': 'jejunal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001217': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001217', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001217', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': [], 'synonymLabels': [], 'label': 'ileal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001218': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001218', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001218', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-3'], 'synonymLabels': ['vena colica media (intermedia)'], 'label': 'middle colic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001219': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001219', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001219', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine'], 'synonymLabels': [], 'label': 'ileocolic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001221': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001221', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001221', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002461', 'children': [], 'synonymLabels': ['musculus transversus abdominis', 'transverse abdominal', 'transversis abdominus', 'transversus abdominis'], 'label': 'transversus abdominis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001222', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001222', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000056', 'children': [], 'synonymLabels': [], 'label': 'right ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001223': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001223', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001223', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000056', 'children': [], 'synonymLabels': [], 'label': 'left ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001224': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001224', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001224', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011143', 'children': [], 'synonymLabels': ['kidney pelvis', 'pelvis of ureter'], 'label': 'renal pelvis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001225': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001225', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001225', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005271', 'http://purl.obolibrary.org/obo/UBERON_0009883', 'http://purl.obolibrary.org/obo/UBERON_0002189', 'http://purl.obolibrary.org/obo/UBERON_0001284'], 'synonymLabels': ['kidney cortex', 'renal cortex', 'cortex renalis'], 'label': 'cortex of kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001228', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001228', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001294', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009095'], 'synonymLabels': ['kidney papilla'], 'label': 'renal papilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001229': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001229', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001229', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001285', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004188', 'http://purl.obolibrary.org/obo/UBERON_0005215', 'http://purl.obolibrary.org/obo/UBERON_0000074'], 'synonymLabels': ['Malpighian corpuscle', 'corpusculum renale', 'Malphigian corpuscle'], 'label': 'renal corpuscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001231', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001231', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001285', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005097', 'http://purl.obolibrary.org/obo/UBERON_0001292', 'http://purl.obolibrary.org/obo/UBERON_0004193', 'http://purl.obolibrary.org/obo/UBERON_0004134'], 'synonymLabels': ['kidney tubule', 'tubulus renalis', 'nephron tubule'], 'label': 'tubules'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001232', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001232', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004203', 'http://purl.obolibrary.org/obo/UBERON_0004205', 'http://purl.obolibrary.org/obo/UBERON_0004204'], 'synonymLabels': ['collecting duct of renal tubule', 'tubulus renalis colligens', 'tubulus renalis arcuatus', 'collecting duct', 'kidney collecting duct', 'renal collecting tubule'], 'label': 'tubules'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001245': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001245', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001245', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002190'], 'synonymLabels': ['anal opening', 'anal orifice', 'opening of terminal part of digestive tract'], 'label': 'anus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001248': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001248', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001248', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002106', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001473', 'http://purl.obolibrary.org/obo/UBERON_0001194', 'http://purl.obolibrary.org/obo/UBERON_0003713', 'http://purl.obolibrary.org/obo/UBERON_0012373'], 'synonymLabels': ['hilum of spleen', 'spleen hilum', 'splenic hilum', 'hilum lienale', 'hilum splenicum'], 'label': 'hilum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001250', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001250', 'parent': 'http://purl.obolibrary.org/obo/UBERON_1000023', 'children': ['https://purl.org/ccf/ASCTB-TEMP_arterial-capillary', 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary', 'http://purl.obolibrary.org/obo/UBERON_0001266', 'http://purl.obolibrary.org/obo/UBERON_0009967', 'https://purl.org/ccf/ASCTB-TEMP_splenic-venules'], 'synonymLabels': ['red pulp of spleen', 'spleen red pulp', 'splenic red pulp', 'pulpa rubra'], 'label': 'red pulp'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001251': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001251', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001251', 'parent': 'http://purl.obolibrary.org/obo/UBERON_1000023', 'children': [], 'synonymLabels': ['marginal zone of spleen', 'junctional zone of spleen', 'spleen marginal zone'], 'label': 'superficial zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001253', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001253', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0036376', 'children': [], 'synonymLabels': ['lamina propria mucosa of ureter', 'lamina propria mucosae of ureter', 'ureter lamina propria', 'ureter lamina propria mucosa', 'ureter lamina propria mucosae'], 'label': 'lamina propria of ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001254', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001254', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005005', 'children': [], 'synonymLabels': ['transitional epithelium of ureter', 'ureter transitional epithelium', 'ureter urothelium'], 'label': 'urothelium of ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001255', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001255', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006082', 'http://purl.obolibrary.org/obo/UBERON_0001256'], 'synonymLabels': ['vesica urinaria'], 'label': 'urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001256': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001256', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001256', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001255', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001259', 'http://purl.obolibrary.org/obo/UBERON_0012378', 'http://purl.obolibrary.org/obo/UBERON_0004943', 'http://purl.obolibrary.org/obo/UBERON_0012239'], 'synonymLabels': ['anatomical wall of bladder', 'anatomical wall of urinary bladder', 'bladder anatomical wall', 'bladder wall', 'urinary bladder anatomical wall', 'urinary bladder wall', 'wall of bladder'], 'label': 'wall of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001257': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001257', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001257', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006082', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005009', 'http://purl.obolibrary.org/obo/UBERON_0004944', 'http://purl.obolibrary.org/obo/UBERON_0004229'], 'synonymLabels': ['bladder trigone', 'deep trigone', \"Lieutaud's trigone\", 'musculus trigoni vesicae profundus', 'trigone of bladder', 'trigonum vesicae', 'urinary bladder trigone', 'vesical trigone'], 'label': 'trigone of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001259': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001259', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001259', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001256', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004645'], 'synonymLabels': ['urinary bladder mucosa', 'urinary bladder mucous membrane', 'bladder mucosa', 'bladder mucous membrane', 'bladder organ mucosa', 'mucosa of bladder', 'mucous membrane of bladder', 'mucous membrane of urinary bladder', 'tunica mucosa (vesica urinaria)', 'tunica mucosa vesicae', 'tunica mucosa vesicae urinariae'], 'label': 'mucosa of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001261', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001261', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004943', 'children': [], 'synonymLabels': ['bladder lamina propria', 'bladder lamina propria mucosa', 'bladder lamina propria mucosae', 'lamina propria mucosa of bladder', 'lamina propria mucosa of urinary bladder', 'lamina propria mucosae of bladder', 'lamina propria mucosae of urinary bladder', 'lamina propria of bladder', 'urinary bladder lamina propria', 'urinary bladder lamina propria mucosa', 'urinary bladder lamina propria mucosae'], 'label': 'lamina propria of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001263': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001263', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001263', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000017', 'children': [], 'synonymLabels': ['pancreas acinus', 'acinus pancreaticus'], 'label': 'pancreatic acinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001264': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001264', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001264', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009708', 'http://purl.obolibrary.org/obo/UBERON_0009709'], 'synonymLabels': [], 'label': 'pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001265': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001265', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001265', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004641', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010399'], 'synonymLabels': ['spleen trabeculum', 'splenic trabecula', 'trabeculae of spleen', 'trabecula of spleen'], 'label': 'trabeculae'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001266': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001266', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001266', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001250', 'children': [], 'synonymLabels': ['cord of Billroth', 'cord of Bilroth'], 'label': 'splenic cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001267': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001267', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001267', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002475'], 'synonymLabels': ['anterior crural nerve'], 'label': 'femoral nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001270': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001270', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001270', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': [], 'synonymLabels': ['bony pelvis', 'pelvis ossea', 'skeletal system of pelvis'], 'label': 'pelvis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001272': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001272', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007830', 'children': ['https://purl.org/ccf/ASCTB-TEMP_acetabular-fossa-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_acetabular-notch-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_acetabulum-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_anterior-gluteal-line-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_anterior-inferior-iliac-spine-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_anterior-superior-iliac-spine-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_arcuate-line-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_auricular-surface-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_gluteal-surface-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_greater-sciatic-notch-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_iliac-crest-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_iliac-fossa-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_iliac-tubercle-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_iliac-tuberosity-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_iliopubic-ramus-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_inferior-pubic-ramus-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_ischial-body-of-ischium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_ischial-ramus-of-ischium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_ischial-spine-of-ischium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_ischial-tuberosity-of-ischium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_ischiopubic-ramus-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_lesser-sciatic-notch-of-ischium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_lunate-surface-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_obturator-foramen-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_obturator-groove-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_pecten-pubis-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_posterior-gluteal-line-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_posterior-inferior-iliac-spine-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_posterior-superior-iliac-spine-of-ilium-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_pubic-body-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_pubic-crest-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_pubic-symphysis-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_pubic-tubercle-of-pubis-of-os-coxa', 'https://purl.org/ccf/ASCTB-TEMP_superior-pubic-ramus-of-pubis-of-os-coxa'], 'synonymLabels': ['innominate bone', 'coxal bone', 'hip bone', 'os coxae', 'pelvic bone'], 'label': 'os coxa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001279', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001279', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004058', 'http://purl.obolibrary.org/obo/UBERON_0001193', 'http://purl.obolibrary.org/obo/UBERON_0005169', 'http://purl.obolibrary.org/obo/UBERON_0001021', 'http://purl.obolibrary.org/obo/UBERON_0002017'], 'synonymLabels': ['trias hepatica', 'portal triad'], 'label': 'portal triad/tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001281': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001281', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001281', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': ['https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule'], 'synonymLabels': ['liver hepatic sinusoids', 'liver sinusoid', 'liver sinusoidal blood vessel', 'sinusoid of liver', 'sinusoidal blood vessel of liver', 'vas capillare sinusoideum', 'vas sinusoideum'], 'label': 'hepatic sinusoid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001282': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001282', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001282', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': [], 'synonymLabels': ['intralobular bile duct', 'canal of Herring', 'cholangiole', 'ductus interlobularis bilifer'], 'label': 'canals of hering'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001284': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001284', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001284', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001225', 'children': [], 'synonymLabels': ['renal column of Bertini', 'renal cortical column', 'columna Bertini', 'column of Bertini', 'kidney column', 'renal column'], 'label': 'renal column (column of bertin)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001285', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001285', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001229', 'http://purl.obolibrary.org/obo/UBERON_0001231'], 'synonymLabels': [], 'label': 'nephron'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001289': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001289', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001289', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004201', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005096', 'http://purl.obolibrary.org/obo/UBERON_0005099', 'http://purl.obolibrary.org/obo/UBERON_8600036', 'http://purl.obolibrary.org/obo/UBERON_8600037'], 'synonymLabels': [\"descending limb of Henle's loop\", 'loop of Henle descending limb', 'descending limb of loop of Henle'], 'label': 'loop of henle (thin limb)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001290': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001290', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001290', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004134', 'children': [], 'synonymLabels': ['proximal straight tubule', 'S3', 'thick descending limb of proximal tubule', 'tubulus rectus proximalis'], 'label': 'proximal straight tubule segment 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001291', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004202', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002335'], 'synonymLabels': ['thick ascending limb of loop of Henle', 'ascending thick limb', 'distal straight tubule', 'loop of Henle ascending limb thick segment', 'straight portion of distal convoluted renal tubule', 'straight portion of distal convoluted tubule', 'thick ascending limb', 'thick ascending limb of distal tubule', \"thick ascending limb of Henle's loop\", 'tubulus rectus distalis'], 'label': 'loop of henle (thick limb/medulla)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001292': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001292', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001292', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001231', 'children': [], 'synonymLabels': ['distal convoluted tubule', 'distal convoluted renal tubule', 'tubulus contortus distalis'], 'label': 'distal convolution'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001294': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001294', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001294', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000362', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009202', 'http://purl.obolibrary.org/obo/UBERON_0001228'], 'synonymLabels': ['inner renal medulla', 'inner zone of medulla of kidney', 'inner zone of renal medulla', 'renal inner medulla', 'set of inner region of renal pyramids', 'zona interna (medullaris renalis)', 'zona interna medullae renalis'], 'label': 'inner medulla of kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001295': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001295', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005630', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015172', 'http://purl.obolibrary.org/obo/UBERON_0002451', 'http://purl.obolibrary.org/obo/UBERON_8600042', 'http://purl.obolibrary.org/obo/UBERON_0002337', 'http://purl.obolibrary.org/obo/UBERON_0022356', 'http://purl.obolibrary.org/obo/UBERON_0022355'], 'synonymLabels': ['tunica mucosa (endometrium)', 'tunica mucosa uteri', 'uterine endometrium'], 'label': 'endometrium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001296': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001296', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001296', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-body-of-uterus', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-uterine-myometrium', 'https://purl.org/ccf/ASCTB-TEMP_outer-uterine-myometrium'], 'synonymLabels': ['tunica muscularis (myometrium)', 'myometrium'], 'label': 'uterine myometrium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001297': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001297', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001297', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-body-of-uterus', 'children': ['https://purl.org/ccf/ASCTB-TEMP_connective-tissue-of-the-uterine-serosa', 'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-the-uterine-serosa'], 'synonymLabels': ['serous coat of uterus', 'serous membrane of uterus', 'tunica serosa (perimetrium)', 'tunica serosa uteri', 'uterine serosa', 'uterus serosa', 'uterus serous membrane', 'perimetrium', 'visceral peritoneum of uterus', 'serosa of uterus'], 'label': 'serosa of the uterus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001298', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001298', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', 'children': [], 'synonymLabels': ['psoas major'], 'label': 'psoas major muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001302': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001302', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001302', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': [], 'synonymLabels': ['right oviduct', 'right uterine tube'], 'label': 'right fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': [], 'synonymLabels': ['left oviduct', 'left uterine tube'], 'label': 'left fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001305': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001305', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': ['https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'http://purl.obolibrary.org/obo/UBERON_0007180', 'https://purl.org/ccf/ASCTB-TEMP_hemorrhagic-anovulatory-follicle', 'https://purl.org/ccf/ASCTB-TEMP_luteinized-unruptured-follicle', 'http://purl.obolibrary.org/obo/UBERON_2001571', 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle'], 'synonymLabels': ['follicle of ovary', 'follicle of ovary viewed macroscopically', 'ovary follicle'], 'label': 'ovarian follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001306': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001306', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001306', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_cumulus-oophorus-oocyte-complex', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005170'], 'synonymLabels': ['cumulus ovaricus', 'discus proligerus', 'ovarian cumulus'], 'label': 'cumulus oophorus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001308': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001308', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001308', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001191', 'children': ['http://purl.org/sig/ont/fma/fma0323778', 'http://purl.obolibrary.org/obo/UBERON_0009040', 'http://purl.obolibrary.org/obo/UBERON_0001354'], 'synonymLabels': [], 'label': 'external iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001309', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001309', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001191', 'children': ['http://purl.org/sig/ont/fma/fma69797', 'http://purl.org/sig/ont/fma/fma69798'], 'synonymLabels': [], 'label': 'internal iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001310': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001310', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001310', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002331', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005192'], 'synonymLabels': ['umbilical artery'], 'label': 'umbilical arteries'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001311': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001311', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001311', 'parent': 'http://purl.org/sig/ont/fma/fma69797', 'children': ['http://purl.org/sig/ont/fma/fma20966'], 'synonymLabels': ['arteria vesicali inferior', 'arteria vesicalis inferior'], 'label': 'inferior vesical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001312', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001312', 'parent': 'http://purl.org/sig/ont/fma/fma69797', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035640'], 'synonymLabels': ['arteria vesicali superior', 'arteria vesicalis superior'], 'label': 'superior vesical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001313': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001313', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001313', 'parent': 'http://purl.org/sig/ont/fma/fma69798', 'children': ['http://purl.org/sig/ont/fma/fma18850', 'http://purl.org/sig/ont/fma/fma18849'], 'synonymLabels': ['ilio-lumbar artery'], 'label': 'iliolumbar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001314', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001314', 'parent': 'http://purl.org/sig/ont/fma/fma69797', 'children': ['http://purl.org/sig/ont/fma/fma70175', 'http://purl.org/sig/ont/fma/fma70150', 'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-obturator-artery'], 'synonymLabels': [], 'label': 'obturator artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001315', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001315', 'parent': 'http://purl.org/sig/ont/fma/fma69798', 'children': ['http://purl.org/sig/ont/fma/fma21121', 'http://purl.org/sig/ont/fma/fma21120'], 'synonymLabels': ['arteria glutealis superior'], 'label': 'superior gluteal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001316', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001316', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001139', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001360', 'http://purl.obolibrary.org/obo/UBERON_0001361', 'http://purl.obolibrary.org/obo/UBERON_0007154', 'http://purl.org/sig/ont/fma/fma21200'], 'synonymLabels': [], 'label': 'external iliac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001317', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001139', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006690', 'http://purl.obolibrary.org/obo/UBERON_0006656', 'http://purl.org/sig/ont/fma/fma18911', 'http://purl.obolibrary.org/obo/UBERON_0001318', 'http://purl.obolibrary.org/obo/UBERON_0018252', 'http://purl.org/sig/ont/fma/fma18905', 'http://purl.org/sig/ont/fma/fma18893', 'http://purl.obolibrary.org/obo/UBERON_0001321', 'http://purl.obolibrary.org/obo/UBERON_0001362', 'http://purl.org/sig/ont/fma/fma18908', 'http://purl.obolibrary.org/obo/UBERON_0006355', 'http://purl.org/sig/ont/fma/fma18896', 'http://purl.obolibrary.org/obo/UBERON_0001319', 'http://purl.obolibrary.org/obo/UBERON_0002460'], 'synonymLabels': [], 'label': 'internal iliac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001318': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001318', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001318', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009042'], 'synonymLabels': [], 'label': 'inferior vesical vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001319', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001319', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['vagina vein', 'vein of vagina'], 'label': 'vaginal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001320', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001139', 'children': [], 'synonymLabels': ['ilio-lumbar vein'], 'label': 'iliolumbar vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001321', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': [], 'label': 'obturator vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': ['http://purl.org/sig/ont/fma/fma44679', 'http://purl.org/sig/ont/fma/fma19039', 'http://purl.org/sig/ont/fma/fma19035'], 'synonymLabels': [], 'label': 'sciatic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001327': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001327', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001327', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': ['coccygeus', 'ischiococcygeus', 'musculus ischiococcygeus'], 'label': 'coccygeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001330', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001330', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000442', 'children': [], 'synonymLabels': ['plexus venosus pampiniformis', 'pampiniform venous plexus', 'plexus of veins of fascia of prostate', 'venous plexus of fascia of prostate', 'venous plexus of fascia of prostate gland'], 'label': 'pampiniform plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001335': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001335', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001335', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002367', 'children': [], 'synonymLabels': ['male prostatic urethra', 'pars prostatica urethrae', 'prostatic part of male urethra', 'prostatic part of urethra'], 'label': 'prostatic urethra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001339': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001339', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001339', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': ['musculus ishiocavernosus'], 'label': 'ischiocavernosus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001340', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001340', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008320', 'children': [], 'synonymLabels': ['arteria dorsalis penis', 'dorsal penile artery', 'dorsal penis artery'], 'label': 'dorsal artery of penis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001342': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001342', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001342', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': [], 'synonymLabels': [], 'label': 'mesovarium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001350', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001350', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001095', 'children': ['https://purl.org/ccf/ASCTB-TEMP_coccygeal-cornu-of-coccyx', 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-coccyx'], 'synonymLabels': ['coccygeal skeleton', 'coccygeal vertebrae I-IV', 'coccyx [coccygeal vertebrae I-IV]', 'coccyx [vertebrae coccygeae I-IV]', 'fused caudal vertebrae', 'fused caudal vertebral column', 'os coccygis'], 'label': 'coccyx'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001354': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001354', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001354', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001308', 'children': ['http://purl.org/sig/ont/fma/fma70195', 'http://purl.obolibrary.org/obo/UBERON_0034693', 'http://purl.org/sig/ont/fma/fma20701'], 'synonymLabels': [], 'label': 'inferior epigastric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001355': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001355', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001355', 'parent': 'http://purl.org/sig/ont/fma/fma0323778', 'children': ['http://purl.org/sig/ont/fma/fma20798', 'http://purl.obolibrary.org/obo/UBERON_0001356', 'http://purl.org/sig/ont/fma/fma69460'], 'synonymLabels': ['arteria profunda femoris', 'profunda femoris artery'], 'label': 'deep femoral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001356': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001356', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001356', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001355', 'children': ['http://purl.org/sig/ont/fma/fma20811', 'http://purl.org/sig/ont/fma/fma22420'], 'synonymLabels': ['medial femoral circumflex artery'], 'label': 'medial circumflex femoral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001357': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001357', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001357', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': [], 'synonymLabels': [], 'label': 'inferior rectal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001358': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001358', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001358', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': ['http://purl.org/sig/ont/fma/fma20840'], 'synonymLabels': [], 'label': 'perineal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001360': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001360', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001360', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001316', 'children': [], 'synonymLabels': ['circumflex iliac vein', 'deep iliac circumflex vein', 'iliac circumflex vein', 'vena circumflexa iliaca profunda'], 'label': 'deep circumflex iliac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001361': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001361', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001361', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001316', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001363', 'http://purl.org/sig/ont/fma/fma70921', 'http://purl.obolibrary.org/obo/UBERON_0035234', 'http://purl.obolibrary.org/obo/UBERON_0001544'], 'synonymLabels': [], 'label': 'femoral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001362': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001362', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001362', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': [], 'label': 'perineal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001363': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001363', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001361', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-accessory-saphenous-vein', 'http://purl.obolibrary.org/obo/UBERON_0009048', 'http://purl.obolibrary.org/obo/UBERON_0018253', 'http://purl.obolibrary.org/obo/UBERON_0001550', 'https://purl.org/ccf/ASCTB-TEMP_posterior-accessory-saphenous-vein', 'http://purl.obolibrary.org/obo/UBERON_0014692', 'http://purl.obolibrary.org/obo/UBERON_0009049', 'http://purl.org/sig/ont/fma/fma44319'], 'synonymLabels': ['greater saphenous vein'], 'label': 'great saphenous vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001367': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001367', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001367', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002190', 'children': [], 'synonymLabels': ['external sphincter ani', 'musculus sphincter ani externus'], 'label': 'external anal sphincter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001369': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001369', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001369', 'parent': 'http://purl.org/sig/ont/fma/fma22424', 'children': [], 'synonymLabels': ['anterior muscle of pelvic girdle', 'iliacus'], 'label': 'iliacus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001370': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001370', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001370', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['gluteus maximus', 'glutæus maximus', 'm.gluteus maximus'], 'label': 'gluteus maximus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001372': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001372', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001372', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', 'children': [], 'synonymLabels': ['psoas minor'], 'label': 'psoas minor muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001373': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001373', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001373', 'parent': 'http://purl.org/sig/ont/fma/fma22424', 'children': [], 'synonymLabels': ['sartorius'], 'label': 'sartorius muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001374': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001374', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001374', 'parent': 'http://purl.org/sig/ont/fma/fma22427', 'children': ['http://purl.org/sig/ont/fma/fma45887', 'http://purl.org/sig/ont/fma/fma45890'], 'synonymLabels': ['biceps femoris'], 'label': 'biceps femoris muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001375': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001375', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001375', 'parent': 'http://purl.org/sig/ont/fma/fma22427', 'children': [], 'synonymLabels': ['semitendinosus'], 'label': 'semitendinosus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001377': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001377', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001377', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003663', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001378', 'http://purl.obolibrary.org/obo/UBERON_0014847', 'http://purl.obolibrary.org/obo/UBERON_0001379', 'http://purl.obolibrary.org/obo/UBERON_0001380'], 'synonymLabels': ['quadriceps', 'quadriceps femoris muscle'], 'label': 'quadriceps femoris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001378': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001378', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001378', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001377', 'children': [], 'synonymLabels': ['musculus rectos femoris'], 'label': 'rectus femoris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001379', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001379', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001377', 'children': [], 'synonymLabels': ['vastus lateralis muscle'], 'label': 'vastus lateralis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001380': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001380', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001380', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001377', 'children': [], 'synonymLabels': ['vastus medialis muscle'], 'label': 'vastus medialis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001381': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001381', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001381', 'parent': 'http://purl.org/sig/ont/fma/fma22427', 'children': [], 'synonymLabels': ['musculus semimembranosus', 'semimembranosus'], 'label': 'semimembranosus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001382': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001382', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001382', 'parent': 'http://purl.org/sig/ont/fma/fma22439', 'children': [], 'synonymLabels': ['M. pectineus', 'pectineus'], 'label': 'pectineus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001383', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003663', 'children': ['http://purl.org/sig/ont/fma/fma22472', 'http://purl.org/sig/ont/fma/fma22424', 'https://purl.org/ccf/ASCTB-TEMP_dorsum-of-foot-muscle', 'http://purl.obolibrary.org/obo/UBERON_0002000', 'http://purl.obolibrary.org/obo/UBERON_0004256', 'https://purl.org/ccf/ASCTB-TEMP_lateral-compartmet-of-leg-muscle', 'http://purl.org/sig/ont/fma/fma22439', 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', 'http://purl.org/sig/ont/fma/fma22474', 'http://purl.org/sig/ont/fma/fma22427', 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle'], 'synonymLabels': ['muscle of thigh or crus', 'muscle of upper or lower hindlimb segment', 'muscle of upper/lower leg', 'muscle organ of leg', 'skeletal muscle of leg', 'leg muscle organ', 'leg skeletal muscle', 'leg skeletal muscle tissue', 'muscle of hindlimb zeugopod or stylopod', 'muscle of leg'], 'label': 'leg muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001384': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001384', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001384', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001870', 'children': [], 'synonymLabels': ['motor cortex'], 'label': 'primary motor cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001386': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001386', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001386', 'parent': 'http://purl.org/sig/ont/fma/fma22472', 'children': [], 'synonymLabels': ['toe extensor', 'toe extensor muscle', 'extensor digitorum longus'], 'label': 'extensor digitorum longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001388': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001388', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001388', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001665', 'children': ['http://purl.obolibrary.org/obo/UBERON_0011908', 'http://purl.obolibrary.org/obo/UBERON_0011907'], 'synonymLabels': ['gastrocnemius muscle', 'm. gastrocnemius', 'm.gastrocnemius'], 'label': 'gastrocnemius'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001389': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001389', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001389', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001665', 'children': [], 'synonymLabels': ['soleus'], 'label': 'soleus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001391': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001391', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001391', 'parent': 'http://purl.org/sig/ont/fma/fma22474', 'children': [], 'synonymLabels': ['m.popliteus', 'poplitea', 'popliteal', 'popliteal muscle', 'popliteus'], 'label': 'popliteus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001392': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001392', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001392', 'parent': 'http://purl.org/sig/ont/fma/fma22474', 'children': [], 'synonymLabels': ['flexor hallucis longus'], 'label': 'flexor hallucis longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001394': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001394', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'children': ['http://purl.org/sig/ont/fma/fma22680', 'http://purl.obolibrary.org/obo/UBERON_0001398', 'http://purl.obolibrary.org/obo/UBERON_0001396', 'http://purl.org/sig/ont/fma/fma22684', 'http://purl.obolibrary.org/obo/UBERON_0001397', 'http://purl.obolibrary.org/obo/UBERON_0035273', 'http://purl.obolibrary.org/obo/UBERON_0001395'], 'synonymLabels': ['axillary part of subclavian artery', 'axillary part of trunk of subclavian artery', 'arteria axillaris'], 'label': 'axillary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001395': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001395', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001395', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': ['http://purl.org/sig/ont/fma/fma23065', 'http://purl.org/sig/ont/fma/fma23066', 'http://purl.org/sig/ont/fma/fma23067', 'http://purl.org/sig/ont/fma/fma23062'], 'synonymLabels': ['thoraco-acromial artery', 'acromiothoracic artery'], 'label': 'thoracoacromial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001396', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001396', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': [], 'synonymLabels': ['external mammary artery'], 'label': 'lateral thoracic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001397', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001397', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': ['http://purl.org/sig/ont/fma/fma23179', 'http://purl.obolibrary.org/obo/UBERON_0002011'], 'synonymLabels': [], 'label': 'subscapular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001398': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001398', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001398', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001399', 'http://purl.org/sig/ont/fma/fma22710', 'http://purl.obolibrary.org/obo/UBERON_0001404', 'http://purl.org/sig/ont/fma/fma22706', 'http://purl.obolibrary.org/obo/UBERON_0001406'], 'synonymLabels': ['brachial part of trunk of subclavian artery'], 'label': 'brachial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001399': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001399', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001399', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001398', 'children': ['http://purl.org/sig/ont/fma/fma23119', 'http://purl.org/sig/ont/fma/fma23120'], 'synonymLabels': ['profunda brachii artery', 'arteria profunda brachii'], 'label': 'deep brachial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001400': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001400', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001400', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': [], 'label': 'iliocostalis thoracis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001401', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001401', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['longissimus dorsi', 'longissimus dorsi muscle', 'longissimus thoracis', 'musculus longissimus dorsi', 'musculus longissimus thoracis'], 'label': 'longissimus thoracis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001402': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001402', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001402', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['longissimus cervicis'], 'label': 'longissimus cervicis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001404': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001404', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001398', 'children': ['http://purl.org/sig/ont/fma/fma22838', 'http://purl.org/sig/ont/fma/fma22761', 'http://purl.org/sig/ont/fma/fma22750', 'http://purl.org/sig/ont/fma/fma71534', 'http://purl.org/sig/ont/fma/fma22748', 'http://purl.org/sig/ont/fma/fma22763', 'http://purl.org/sig/ont/fma/fma22752'], 'synonymLabels': [], 'label': 'radial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001405': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001405', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001405', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['spinalis thoracis'], 'label': 'spinalis thoracis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001406': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001406', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001398', 'children': ['http://purl.org/sig/ont/fma/fma22800', 'http://purl.org/sig/ont/fma/fma22806', 'http://purl.org/sig/ont/fma/fma22824', 'http://purl.org/sig/ont/fma/fma22820', 'http://purl.obolibrary.org/obo/UBERON_0002249', 'http://purl.org/sig/ont/fma/fma22817', 'http://purl.org/sig/ont/fma/fma22803', 'http://purl.obolibrary.org/obo/UBERON_0006564'], 'synonymLabels': ['arteria ulnaris'], 'label': 'ulnar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001410': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001410', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001410', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006564', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006137'], 'synonymLabels': ['common palmar digital arteries'], 'label': 'common palmar digital artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001411': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001411', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001411', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': ['http://purl.org/sig/ont/fma/fma22967', 'http://purl.obolibrary.org/obo/UBERON_0001414'], 'synonymLabels': ['basilic vein of forearm', 'vena basilica antebrachii'], 'label': 'basilic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001412': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001412', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001412', 'parent': 'http://purl.org/sig/ont/fma/fma22914', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004561'], 'synonymLabels': ['proximal palmar digital vein'], 'label': 'common palmar digital vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001413': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001413', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001413', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': ['http://purl.org/sig/ont/fma/fma22947', 'http://purl.org/sig/ont/fma/fma22950'], 'synonymLabels': [], 'label': 'brachial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001414', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001414', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001411', 'children': [], 'synonymLabels': ['median basilic vein'], 'label': 'median cubital vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001420': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001420', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001420', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': [], 'synonymLabels': ['vena subscapularis'], 'label': 'subscapular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001423': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001423', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone', 'children': ['https://purl.org/ccf/ASCTB-TEMP_head-of-radius-of-radius', 'http://purl.org/sig/ont/fma/fma39682', 'https://purl.org/ccf/ASCTB-TEMP_neck-of-radius-of-radius', 'https://purl.org/ccf/ASCTB-TEMP_radial-tuberosity-of-radius', 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-radius-of-radius', 'http://purl.org/sig/ont/fma/fma23524', 'http://purl.org/sig/ont/fma/fma23530'], 'synonymLabels': ['radius'], 'label': 'radius bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001424': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001424', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010994', 'https://purl.org/ccf/ASCTB-TEMP_head-of-ulna-of-ulna', 'http://purl.org/sig/ont/fma/fma39685', 'https://purl.org/ccf/ASCTB-TEMP_olecranon-of-ulna', 'http://purl.org/sig/ont/fma/fma23618', 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-ulna-of-ulna', 'http://purl.obolibrary.org/obo/UBERON_0011575', 'http://purl.org/sig/ont/fma/fma23626', 'https://purl.org/ccf/ASCTB-TEMP_supinator-fossa-of-ulna', 'https://purl.org/ccf/ASCTB-TEMP_trochlear-notch-of-ulna', 'https://purl.org/ccf/ASCTB-TEMP_ulnar-tuberosity-of-ulna'], 'synonymLabels': [], 'label': 'ulna'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001427': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001427', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001427', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['https://purl.org/ccf/ASCTB-TEMP_scaphoid-tubercle-of-scaphoid'], 'synonymLabels': ['navicular bone of hand', 'navicular bone of manus', 'navicular of manus', 'os carpi radiale', 'os naviculare manus', 'os scaphoideum', 'radial carpal bone', 'scaphoid bone', 'scaphoideum', 'radiale'], 'label': 'scaphoid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001428': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001428', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001428', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': [], 'synonymLabels': ['lunar', 'lunate bone', 'os carpi intermedium', 'os lunatum', 'semilunar bone', 'intermedium'], 'label': 'lunate'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001429': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001429', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001429', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': [], 'synonymLabels': ['pisiform bone'], 'label': 'pisiform'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001430': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001430', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001430', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': [], 'synonymLabels': ['distal carpal 1', 'greater multangular bone', 'os trapezium', 'trapezial bone', 'trapezium', 'trapezium bone'], 'label': 'distal carpal bone 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001431': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001431', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001431', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': [], 'synonymLabels': ['distal carpal 2', 'lesser multangular bone', 'os trapezoideum', 'trapezoid', 'trapezoid bone'], 'label': 'distal carpal bone 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001432': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001432', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001432', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': [], 'synonymLabels': ['distal carpal 3', 'capitate', 'capitate bone', 'os magnum (carpus)'], 'label': 'distal carpal bone 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001433': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001433', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001433', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma39978'], 'synonymLabels': ['distal carpal 4', 'hamate', 'hamate bone', 'unciform bone'], 'label': 'distal carpal bone 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001446': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001446', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001446', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', 'children': ['http://purl.org/sig/ont/fma/fma33729', 'http://purl.obolibrary.org/obo/UBERON_0012291', 'http://purl.obolibrary.org/obo/UBERON_0018673', 'http://purl.org/sig/ont/fma/fma33738'], 'synonymLabels': [], 'label': 'fibula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001450': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001450', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma75330', 'https://purl.org/ccf/ASCTB-TEMP_articular-surface-for-cuboid-bone-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_body-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_calcaneal-sulcus-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_calcaneal-tuberosity-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_fibular-trochlea-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-tendon-of-flexor-hallucis-longus-muscle-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_lateral-process-of-tuberosity-of-calcaneus', 'https://purl.org/ccf/ASCTB-TEMP_medial-process-of-tuberosity-of-calcaneus', 'http://purl.org/sig/ont/fma/fma75331', 'http://purl.org/sig/ont/fma/fma75332', 'https://purl.org/ccf/ASCTB-TEMP_sustentaculum-tali-of-calcaneus'], 'synonymLabels': ['calcaneum', 'calcaneal bone', 'calcaneus bone', 'os calcis'], 'label': 'calcaneus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001451', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001451', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma34782'], 'synonymLabels': ['centrale (hind)', 'navicular', 'navicular of foot', 'navicular of pes', 'os naviculare', 'os naviculare pedis', 'os tarsi centrale', 'navicular bone of pes'], 'label': 'navicular bone of foot'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001452', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001452', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': [], 'synonymLabels': ['cuneiforme 1', 'distal tarsal 1 bone', 'entocuneiforme', 'first cuneiform', 'first cuneiform bone', 'medial cuneiform', 'medial cuneiform bone', 'os cuneiforme mediale', 'os tarsale I', 'tarsal 1'], 'label': 'distal tarsal bone 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001453', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001453', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': [], 'synonymLabels': ['intermediate cuneiform', 'mesocuneiforme', 'middle cuneiform', 'middle cuneiform bone of foot', 'os cuneiforme intermedium', 'os tarsale II', 'second cuneiform bone', 'second cuneiform bone of foot', 'tarsal 2', 'cuneiforme 2', 'distal tarsal 2 bone'], 'label': 'distal tarsal bone 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001454': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001454', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001454', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': [], 'synonymLabels': ['cuneiforme 3', 'distal tarsal 3 bone', 'ectocuneiforme', 'external cuneiform', 'external cuneiform bone of foot', 'lateral cuneiform', 'lateral cuneiform bone', 'os cuneiforme laterale', 'os tarsale III', 'tarsal 3', 'third cuneiform bone'], 'label': 'distal tarsal bone 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001455': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001455', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001455', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['https://purl.org/ccf/ASCTB-TEMP_groove-for-fibularis-longus-tendon-of-cuboid', 'http://purl.org/sig/ont/fma/fma76642'], 'synonymLabels': ['cuboid'], 'label': 'cuboid bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001465': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001465', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001465', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001485', 'http://purl.org/sig/ont/fma/fma24978', 'http://purl.org/sig/ont/fma/fma24977'], 'synonymLabels': ['knee region'], 'label': 'knee'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001473': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001473', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001473', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001248', 'children': [], 'synonymLabels': ['lymphatic vessel', 'lymphatic vessels'], 'label': 'lymph vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001476': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001476', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001476', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': ['http://purl.org/sig/ont/fma/fma34678', 'http://purl.org/sig/ont/fma/fma34677', 'http://purl.org/sig/ont/fma/fma34679'], 'synonymLabels': ['m. deltoideus', 'musculus deltoideus', 'deltoid'], 'label': 'deltoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001477', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['infraspinatus'], 'label': 'infraspinatus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001478': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001478', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001478', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['teres major'], 'label': 'teres major muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001482': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001482', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001476', 'http://purl.obolibrary.org/obo/UBERON_0001477', 'http://purl.obolibrary.org/obo/UBERON_0001125', 'http://purl.org/sig/ont/fma/fma13410', 'http://purl.obolibrary.org/obo/UBERON_0001129', 'http://purl.obolibrary.org/obo/UBERON_0002383', 'http://purl.obolibrary.org/obo/UBERON_0001478', 'http://purl.obolibrary.org/obo/UBERON_0010496'], 'synonymLabels': ['muscle of shoulder', 'muscle organ of shoulder', 'shoulder muscle organ'], 'label': 'shoulder muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001485': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001485', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001485', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001465', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009980'], 'synonymLabels': ['joint of knee'], 'label': 'knee joint'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001492', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma44962', 'http://purl.org/sig/ont/fma/fma77559', 'http://purl.org/sig/ont/fma/fma44949', 'http://purl.org/sig/ont/fma/fma65333', 'http://purl.org/sig/ont/fma/fma65334', 'http://purl.org/sig/ont/fma/fma81205', 'http://purl.org/sig/ont/fma/fma81232', 'http://purl.org/sig/ont/fma/fma81198', 'http://purl.org/sig/ont/fma/fma81195', 'http://purl.org/sig/ont/fma/fma39145', 'http://purl.org/sig/ont/fma/fma44948', 'http://purl.org/sig/ont/fma/fma80285', 'http://purl.org/sig/ont/fma/fma81223', 'http://purl.org/sig/ont/fma/fma65330', 'http://purl.org/sig/ont/fma/fma65329', 'http://purl.org/sig/ont/fma/fma44956'], 'synonymLabels': [], 'label': 'radial nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001493': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001493', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001493', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81285', 'http://purl.org/sig/ont/fma/fma81286'], 'synonymLabels': ['circumflex humeral nerve'], 'label': 'axillary nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001494': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001494', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma44873', 'http://purl.org/sig/ont/fma/fma81220', 'http://purl.org/sig/ont/fma/fma65351', 'http://purl.org/sig/ont/fma/fma44877', 'http://purl.org/sig/ont/fma/fma44875', 'http://purl.org/sig/ont/fma/fma44878', 'http://purl.org/sig/ont/fma/fma44876'], 'synonymLabels': [], 'label': 'ulnar nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001495': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001495', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001495', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002426', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002381', 'http://purl.obolibrary.org/obo/UBERON_0001100'], 'synonymLabels': ['M. pectoralis', 'muscle of pectoral part of chest', 'muscle of pectoral region'], 'label': 'pectoral muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001496': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001496', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001496', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000947', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001508', 'http://purl.obolibrary.org/obo/UBERON_0001626', 'http://purl.obolibrary.org/obo/UBERON_0001625'], 'synonymLabels': ['ascending thoracic aorta', 'pars ascendens aortae'], 'label': 'ascending aorta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001499': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001499', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'children': ['http://purl.org/sig/ont/fma/fma37711', 'http://purl.org/sig/ont/fma/fma38456', 'http://purl.obolibrary.org/obo/UBERON_0001500', 'http://purl.org/sig/ont/fma/fma321806', 'https://purl.org/ccf/ASCTB-TEMP_hypothenar-hand-muscle', 'http://purl.org/sig/ont/fma/fma37712', 'http://purl.org/sig/ont/fma/fma38488', 'http://purl.obolibrary.org/obo/UBERON_0001482', 'http://purl.org/sig/ont/fma/fma321805'], 'synonymLabels': ['arm skeletal muscle', 'arm skeletal muscle tissue', 'muscle of upper arm or lower arm', 'upper arm / lower arm muscle', 'muscle of arm'], 'label': 'arm muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001500': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001500', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001500', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.org/sig/ont/fma/fma37418', 'http://purl.org/sig/ont/fma/fma37385', 'https://purl.org/ccf/ASCTB-TEMP_palmar-interosseous-muscle'], 'synonymLabels': ['muscle of manus', 'manus muscle', 'manus muscle organ', 'muscle of hand', 'muscle organ of manus'], 'label': 'hand muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001505': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001505', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001505', 'parent': 'http://purl.org/sig/ont/fma/fma37711', 'children': [], 'synonymLabels': ['coracobrachial', 'coracobrachialis', \"Pirogoff's aponeurosis\"], 'label': 'coracobrachialis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001506': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001506', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001506', 'parent': 'http://purl.org/sig/ont/fma/fma37711', 'children': [], 'synonymLabels': [\"Casserio's muscle\"], 'label': 'brachialis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001508': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001508', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001496', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001529', 'http://purl.obolibrary.org/obo/UBERON_0001530', 'http://purl.obolibrary.org/obo/UBERON_0001514', 'http://purl.obolibrary.org/obo/UBERON_0001536', 'http://purl.obolibrary.org/obo/UBERON_0001584', 'http://purl.obolibrary.org/obo/UBERON_0001533'], 'synonymLabels': ['arch of aorta', 'arcus aortae'], 'label': 'aortic arch'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001509': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001509', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001509', 'parent': 'http://purl.org/sig/ont/fma/fma37712', 'children': ['http://purl.org/sig/ont/fma/fma37694', 'http://purl.org/sig/ont/fma/fma37692', 'http://purl.org/sig/ont/fma/fma37693'], 'synonymLabels': ['triceps', 'triceps brachii'], 'label': 'triceps brachii muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001514': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001514', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001514', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002345'], 'synonymLabels': ['pars descendens aortae'], 'label': 'descending aorta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001516': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001516', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001640', 'http://purl.obolibrary.org/obo/UBERON_0001191', 'http://purl.obolibrary.org/obo/UBERON_0001183', 'http://purl.obolibrary.org/obo/UBERON_0012255', 'http://purl.obolibrary.org/obo/UBERON_0035529', 'http://purl.org/sig/ont/fma/fma14747', 'http://purl.org/sig/ont/fma/fma14742', 'http://purl.org/sig/ont/fma/fma14743', 'http://purl.org/sig/ont/fma/fma14744', 'http://purl.org/sig/ont/fma/fma14745', 'http://purl.org/sig/ont/fma/fma14903', 'http://purl.org/sig/ont/fma/fma14756', 'http://purl.org/sig/ont/fma/fma14763', 'http://purl.obolibrary.org/obo/UBERON_0001186', 'http://purl.obolibrary.org/obo/UBERON_0001189', 'http://purl.obolibrary.org/obo/UBERON_0006636', 'http://purl.obolibrary.org/obo/UBERON_0005464', 'http://purl.obolibrary.org/obo/UBERON_0012173', 'http://purl.obolibrary.org/obo/UBERON_0001190', 'http://purl.obolibrary.org/obo/UBERON_0001184', 'http://purl.obolibrary.org/obo/UBERON_0035322', 'http://purl.org/sig/ont/fma/fma14746', 'http://purl.org/sig/ont/fma/fma14738', 'http://purl.org/sig/ont/fma/fma14739', 'http://purl.org/sig/ont/fma/fma14740', 'http://purl.org/sig/ont/fma/fma14741', 'http://purl.org/sig/ont/fma/fma14902', 'http://purl.org/sig/ont/fma/fma14755', 'http://purl.org/sig/ont/fma/fma14762', 'http://purl.obolibrary.org/obo/UBERON_0001185', 'http://purl.obolibrary.org/obo/UBERON_0001188', 'http://purl.obolibrary.org/obo/UBERON_0001182', 'http://purl.obolibrary.org/obo/UBERON_0001187'], 'synonymLabels': ['abdominal part of aorta', 'descending abdominal aorta', 'pars abdominalis aortae'], 'label': 'abdominal aorta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001521': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001521', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001521', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': [], 'synonymLabels': ['flexor carpi radialis'], 'label': 'flexor carpi radialis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001522': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001522', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001522', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': ['http://purl.org/sig/ont/fma/fma38615', 'http://purl.org/sig/ont/fma/fma38616'], 'synonymLabels': ['flexor carpi ulnaris'], 'label': 'flexor carpi ulnaris muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001523': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001523', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001523', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': [], 'synonymLabels': ['flexor digitorum profundus'], 'label': 'flexor digitorum profundus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001524': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001524', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001524', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['extensor carpi radialis longus'], 'label': 'extensor carpi radialis longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001525': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001525', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001525', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['extensor carpi radialis brevis', 'musculus extensor carpi radialis brevis'], 'label': 'extensor carpi radialis brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001526': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001526', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001526', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': ['http://purl.org/sig/ont/fma/fma77260', 'http://purl.org/sig/ont/fma/fma77261'], 'synonymLabels': ['ECU muscle', 'extensor carpi ulnaris', 'musculus extensor carpi ulnaris'], 'label': 'extensor carpi ulnaris muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001529': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001529', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001529', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001531', 'http://purl.obolibrary.org/obo/UBERON_0001534'], 'synonymLabels': ['brachiocephalic trunk', 'innominate artery', 'truncus brachiocephalicus'], 'label': 'brachiocephalic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001530': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001530', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001530', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001532'], 'synonymLabels': ['carotid artery system', 'trunk of common carotid tree', 'common carotid artery plus branches'], 'label': 'common carotid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001531': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001531', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001531', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001529', 'children': [], 'synonymLabels': ['right common carotid artery plus branches', 'trunk of right common carotid tree'], 'label': 'right common carotid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001532': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001532', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001530', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001624', 'http://purl.obolibrary.org/obo/UBERON_0014696', 'http://purl.obolibrary.org/obo/UBERON_0007693', 'http://purl.org/sig/ont/fma/fma49817', 'https://purl.org/ccf/ASCTB-TEMP_dural-artery', 'http://purl.obolibrary.org/obo/UBERON_0035492', 'http://purl.obolibrary.org/obo/UBERON_0001627', 'http://purl.obolibrary.org/obo/UBERON_0001619', 'http://purl.obolibrary.org/obo/UBERON_0001628', 'http://purl.obolibrary.org/obo/UBERON_0035404'], 'synonymLabels': ['cranial carotid artery', 'internal carotid'], 'label': 'internal carotid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001533': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001533', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001394', 'http://purl.obolibrary.org/obo/UBERON_0004688', 'http://purl.org/sig/ont/fma/fma79658', 'http://purl.obolibrary.org/obo/UBERON_0002456', 'http://purl.org/sig/ont/fma/fma3990', 'http://purl.obolibrary.org/obo/UBERON_0001535'], 'synonymLabels': ['arterial tree of upper limb', 'pectoral artery', 'subclavian arterial tree', 'arteria subclavia'], 'label': 'subclavian artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001534': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001534', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001534', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001529', 'children': [], 'synonymLabels': ['arteria subclavia dextra'], 'label': 'right subclavian artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001535': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001535', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001535', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005431', 'http://purl.obolibrary.org/obo/UBERON_0001633', 'http://purl.obolibrary.org/obo/UBERON_0009688', 'http://purl.obolibrary.org/obo/UBERON_0007146', 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-5'], 'synonymLabels': [], 'label': 'vertebral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001536': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001536', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001536', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'children': [], 'synonymLabels': ['left common carotid artery plus branches', 'trunk of left common carotid tree'], 'label': 'left common carotid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001537': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001537', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': ['http://purl.org/sig/ont/fma/fma43904', 'http://purl.org/sig/ont/fma/fma43905', 'http://purl.org/sig/ont/fma/fma43902', 'http://purl.obolibrary.org/obo/UBERON_0001539', 'https://purl.org/ccf/ASCTB-TEMP_lateral-calcaneal-artery', 'http://purl.org/sig/ont/fma/fma43903'], 'synonymLabels': [], 'label': 'anterior tibial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001538': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001538', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001538', 'parent': 'http://purl.org/sig/ont/fma/fma66421', 'children': ['http://purl.org/sig/ont/fma/fma43918', 'http://purl.org/sig/ont/fma/fma43926', 'https://purl.org/ccf/ASCTB-TEMP_medial-calcaneal-artery', 'http://purl.obolibrary.org/obo/UBERON_0001541'], 'synonymLabels': [], 'label': 'posterior tibial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001539': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001539', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001539', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'children': ['http://purl.obolibrary.org/obo/UBERON_0034927', 'http://purl.org/sig/ont/fma/fma69513', 'http://purl.org/sig/ont/fma/fma44647', 'http://purl.org/sig/ont/fma/fma44595', 'http://purl.obolibrary.org/obo/UBERON_0001553'], 'synonymLabels': ['dorsal artery of foot', 'arteria dorsalis pedis'], 'label': 'dorsalis pedis artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001540': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001540', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001540', 'parent': 'http://purl.org/sig/ont/fma/fma66421', 'children': ['http://purl.org/sig/ont/fma/fma44630', 'http://purl.org/sig/ont/fma/fma44034', 'http://purl.org/sig/ont/fma/fma44033'], 'synonymLabels': ['fibular artery', 'arteria fibularis'], 'label': 'peroneal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001541': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001541', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001541', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001538', 'children': ['http://purl.org/sig/ont/fma/fma43934', 'http://purl.org/sig/ont/fma/fma43933'], 'synonymLabels': [], 'label': 'medial plantar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001543', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001543', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009006', 'children': [], 'synonymLabels': [], 'label': 'popliteal lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001544': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001544', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001361', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001545', 'http://purl.obolibrary.org/obo/UBERON_0013143', 'http://purl.org/sig/ont/fma/fma71587', 'http://purl.obolibrary.org/obo/UBERON_0001546', 'http://purl.obolibrary.org/obo/UBERON_0001547', 'http://purl.obolibrary.org/obo/UBERON_0013144'], 'synonymLabels': [], 'label': 'popliteal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001545': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001545', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001545', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'children': [], 'synonymLabels': [], 'label': 'anterior tibial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001546': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001546', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001546', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-plantar-vein', 'http://purl.obolibrary.org/obo/UBERON_0006144', 'http://purl.obolibrary.org/obo/UBERON_0013142'], 'synonymLabels': [], 'label': 'posterior tibial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001547': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001547', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001547', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008783', 'http://purl.obolibrary.org/obo/UBERON_0001548'], 'synonymLabels': ['lesser saphenous vein', 'short saphenous vein', 'vena saphena parva'], 'label': 'small saphenous vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001548': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001548', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001548', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001547', 'children': [], 'synonymLabels': ['lateral marginal vein of foot', 'vena marginalis lateralis', 'vena marginalis lateralis pedis'], 'label': 'lateral marginal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001549': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001549', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001549', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008783', 'children': ['http://purl.org/sig/ont/fma/fma323401'], 'synonymLabels': ['metatarsal vein'], 'label': 'dorsal metatarsal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001550': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001550', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001550', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': ['medial marginal vein of foot', 'vena marginalis medialis', 'vena marginalis medialis pedis'], 'label': 'medial marginal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001552': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001552', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001552', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009885', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004723'], 'synonymLabels': ['kidney arcuate artery', 'renal arcuate artery'], 'label': 'arcuate renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001553': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001553', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001553', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001539', 'children': [], 'synonymLabels': [], 'label': 'medial tarsal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001555': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001555', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001555', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001007', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004921'], 'synonymLabels': ['digestive tube', 'enteric tract'], 'label': 'digestive tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001556': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001556', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001556', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001008', 'children': [], 'synonymLabels': [], 'label': 'lower urinary tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001557': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001557', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001557', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000065', 'children': [], 'synonymLabels': [], 'label': 'upper respiratory tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001558': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001558', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001558', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000065', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000170', 'http://purl.obolibrary.org/obo/UBERON_0007196'], 'synonymLabels': ['lower respiratory system'], 'label': 'lower respiratory tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001561': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001561', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001561', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': [], 'label': 'subcostal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001564': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001564', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001564', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008571', 'children': [], 'synonymLabels': ['musculus mylohyoideus', 'mylohyoid', 'mylohyoideus', 'mylohyoideus muscle'], 'label': 'mylohyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001565': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001565', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001565', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008571', 'children': [], 'synonymLabels': ['genio-hyoideus', 'genio-hyoideus muscle', 'geniohyoid', 'geniohyoideus', 'geniohyoideus muscle', 'm. geniohyoideus'], 'label': 'geniohyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001566': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001566', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001566', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': ['http://purl.org/sig/ont/fma/fma46610', 'http://purl.org/sig/ont/fma/fma46609'], 'synonymLabels': ['cricothyroid', 'cricothyroideus', 'M. cricothyroideus', 'musculus cricothyroideus'], 'label': 'cricothyroid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001568': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001568', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001566', 'http://purl.obolibrary.org/obo/UBERON_0008573', 'http://purl.org/sig/ont/fma/fma46583', 'http://purl.obolibrary.org/obo/UBERON_0008572', 'http://purl.org/sig/ont/fma/fma46588', 'http://purl.org/sig/ont/fma/fma46582', 'http://purl.obolibrary.org/obo/UBERON_0008577'], 'synonymLabels': ['larynx muscle', 'larynx muscle organ', 'muscle organ of larynx', 'musculi laryngeales', 'muscle of larynx'], 'label': 'laryngeal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001571': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001571', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001571', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001575', 'children': [], 'synonymLabels': ['genioglossus', 'm. genioglossus', 'musculus genioglossus'], 'label': 'genioglossus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001572': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001572', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001572', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001575', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ceratoglossus-of-hyoglossus-muscle', 'https://purl.org/ccf/ASCTB-TEMP_chondroglossus-of-hyoglossus-muscle'], 'synonymLabels': ['hyoglossus', 'm. hyoglossus'], 'label': 'hyoglossus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001574': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001574', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001574', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003682', 'children': [], 'synonymLabels': ['palatoglossal', 'palatoglossal muscle', 'palatoglossus'], 'label': 'palatoglossus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001575': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001575', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001575', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001571', 'http://purl.obolibrary.org/obo/UBERON_0001572', 'http://purl.org/sig/ont/fma/fma46692'], 'synonymLabels': ['extrinsic muscle of tongue', 'extrinsic lingual muscle'], 'label': 'extrinsic tongue muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001576': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001576', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001576', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-longitudinal-lingual-muscle', 'https://purl.org/ccf/ASCTB-TEMP_superior-longitudinal-lingual-muscle', 'https://purl.org/ccf/ASCTB-TEMP_transverse-muscle', 'https://purl.org/ccf/ASCTB-TEMP_vertical-muscle'], 'synonymLabels': ['intrinsic lingual muscle', 'intrinsic muscle of tongue'], 'label': 'intrinsic tongue muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001578': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001578', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001578', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': ['http://purl.org/sig/ont/fma/fma46781', 'http://purl.org/sig/ont/fma/fma46784'], 'synonymLabels': ['orbicularis oculi'], 'label': 'orbicularis oculi muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001579': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001579', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001579', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': [], 'synonymLabels': ['first cranial nerve', 'nervus olfactorius [i]', 'olfactory I', 'olfactory i nerve', 'olfactory nerve [I]'], 'label': 'olfactory nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001582': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001582', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001582', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['buccinator', 'musculus buccinator'], 'label': 'buccinator muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001584': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001584', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001584', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001508', 'children': [], 'synonymLabels': ['arteria subclavia (sinistra)'], 'label': 'left subclavian artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001585': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001585', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001585', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001594', 'http://purl.obolibrary.org/obo/UBERON_0003711', 'http://purl.org/sig/ont/fma/fma4761', 'http://purl.org/sig/ont/fma/fma4751'], 'synonymLabels': ['anterior vena cava', 'superior caval vein'], 'label': 'superior vena cava'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001586': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001586', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': ['https://purl.org/ccf/ASCTB-TEMP_common-facial-vein', 'http://purl.obolibrary.org/obo/UBERON_0001653', 'http://purl.obolibrary.org/obo/UBERON_0034982', 'http://purl.obolibrary.org/obo/UBERON_0007160', 'http://purl.obolibrary.org/obo/UBERON_0006634', 'http://purl.obolibrary.org/obo/UBERON_0034965', 'http://purl.obolibrary.org/obo/UBERON_0005475', 'http://purl.obolibrary.org/obo/UBERON_0034981', 'http://purl.obolibrary.org/obo/UBERON_0007157'], 'synonymLabels': ['internal jugular', 'internal jugular venous tree'], 'label': 'internal jugular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001587': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001587', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001587', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000985', 'http://purl.obolibrary.org/obo/UBERON_0001101'], 'synonymLabels': ['subclavian venous tree', 'vena subclavia'], 'label': 'subclavian vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001588': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001588', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': ['http://purl.org/sig/ont/fma/fma14290', 'http://purl.org/sig/ont/fma/fma10787', 'http://purl.org/sig/ont/fma/fma14296', 'http://purl.org/sig/ont/fma/fma4746', 'http://purl.org/sig/ont/fma/fma76736', 'http://purl.org/sig/ont/fma/fma12852'], 'synonymLabels': [], 'label': 'vertebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001589': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001589', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012200', 'http://purl.org/sig/ont/fma/fma4741', 'http://purl.org/sig/ont/fma/fma4740', 'http://purl.org/sig/ont/fma/fma4739', 'http://purl.org/sig/ont/fma/fma4735', 'http://purl.org/sig/ont/fma/fma4734', 'http://purl.org/sig/ont/fma/fma4733', 'http://purl.obolibrary.org/obo/UBERON_0006662', 'http://purl.obolibrary.org/obo/UBERON_0007155'], 'synonymLabels': [], 'label': 'internal thoracic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001590': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001590', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001590', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': [], 'synonymLabels': [], 'label': 'pericardiacophrenic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001591': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001591', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001591', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002124', 'children': ['https://purl.org/ccf/ASCTB-TEMP_thymic-venule'], 'synonymLabels': ['thymic tributary of brachiocephalic vein', 'vena thymica'], 'label': 'thymic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001592': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001592', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001592', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': ['https://purl.org/ccf/ASCTB-TEMP_bronchial-venule', 'http://purl.obolibrary.org/obo/UBERON_0004849', 'http://purl.obolibrary.org/obo/UBERON_0012418'], 'synonymLabels': ['bronchial venous tree'], 'label': 'bronchial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001594': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001594', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001585', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006665', 'http://purl.org/sig/ont/fma/fma4748', 'http://purl.obolibrary.org/obo/UBERON_0006663', 'http://purl.obolibrary.org/obo/UBERON_0012199', 'http://purl.org/sig/ont/fma/fma4942', 'http://purl.org/sig/ont/fma/fma4860', 'http://purl.org/sig/ont/fma/fma4859', 'http://purl.org/sig/ont/fma/fma4876', 'http://purl.org/sig/ont/fma/fma4875', 'http://purl.org/sig/ont/fma/fma4874', 'http://purl.org/sig/ont/fma/fma4873', 'http://purl.org/sig/ont/fma/fma4872', 'http://purl.obolibrary.org/obo/UBERON_0035474', 'http://purl.obolibrary.org/obo/UBERON_0012196', 'http://purl.obolibrary.org/obo/UBERON_0012194', 'http://purl.obolibrary.org/obo/UBERON_0012237'], 'synonymLabels': ['azygos venous tree'], 'label': 'azygos vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001597': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001597', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001597', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003681', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010995', 'http://purl.obolibrary.org/obo/UBERON_0011140'], 'synonymLabels': ['masseter'], 'label': 'masseter muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001598': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001598', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001598', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003681', 'children': [], 'synonymLabels': ['musculus temporalis', 'temporal muscle', 'temporalis'], 'label': 'temporalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001599': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001599', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001599', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_middle-ear-muscle', 'children': [], 'synonymLabels': ['stapedius'], 'label': 'stapedius muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001600': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001600', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001600', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_middle-ear-muscle', 'children': [], 'synonymLabels': ['eustachian muscle', 'tensor tympani'], 'label': 'tensor tympani muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001601': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001601', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006320', 'http://purl.obolibrary.org/obo/UBERON_0006322', 'http://purl.obolibrary.org/obo/UBERON_0001603', 'http://purl.org/sig/ont/fma/fma49041', 'http://purl.obolibrary.org/obo/UBERON_0001602', 'http://purl.obolibrary.org/obo/UBERON_0006321', 'http://purl.obolibrary.org/obo/UBERON_0006323', 'http://purl.obolibrary.org/obo/UBERON_0010379'], 'synonymLabels': ['extra-ocular skeletal muscle', 'extraocular muscle', 'extraocular musculature', 'extraocular skeletal muscle', 'extrinsic eye muscle', 'extrinsic muscle of eyeball', 'extrinsic ocular muscle'], 'label': 'extra-ocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001602': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001602', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001602', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['m. rectus medialis', 'medial rectus', 'medial rectus muscle', 'musculus rectus medialis'], 'label': 'medial rectus extraocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001603': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001603', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001603', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['lateral rectus', 'lateral rectus extraocular muscle', 'lateral rectus muscle', 'M. rectus lateralis', 'musculus rectus lateralis', 'posterior rectus'], 'label': 'lateral rectus extra-ocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001605': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001605', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001605', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001775', 'children': [], 'synonymLabels': ['musculus ciliarus'], 'label': 'ciliary muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001608', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001608', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-eye-muscle', 'children': [], 'synonymLabels': ['dilatator pupillae', 'dilator muscle of pupil', 'dilator of pupil', 'dilator pupillae', 'iris dilator muscle', 'musculus dilatator pupillae', 'pupillary dilator muscle', 'radial muscle of iris'], 'label': 'dilator pupillae muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001610', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001610', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': ['http://purl.org/sig/ont/fma/fma49532', 'http://purl.org/sig/ont/fma/fma49546', 'http://purl.obolibrary.org/obo/UBERON_0001611'], 'synonymLabels': ['lingual branch of external carotid artery', 'lingual artery'], 'label': 'dorsal lingual artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001611': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001611', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001611', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001610', 'children': [], 'synonymLabels': ['sublingual branch of lingual artery'], 'label': 'sublingual artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001612': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001612', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010408', 'http://purl.org/sig/ont/fma/fma71675', 'http://purl.obolibrary.org/obo/UBERON_0003471', 'http://purl.org/sig/ont/fma/fma49580', 'http://purl.org/sig/ont/fma/fma49561', 'http://purl.obolibrary.org/obo/UBERON_0003470', 'http://purl.org/sig/ont/fma/fma49558'], 'synonymLabels': ['tonsillar branch of the facial artery'], 'label': 'facial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001613': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001613', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001070', 'children': ['http://purl.org/sig/ont/fma/fma49602', 'http://purl.org/sig/ont/fma/fma49608', 'http://purl.org/sig/ont/fma/fma49599', 'http://purl.org/sig/ont/fma/fma49618', 'http://purl.org/sig/ont/fma/fma49621', 'http://purl.org/sig/ont/fma/fma49477', 'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-branch-of-occipital-artery'], 'synonymLabels': [], 'label': 'occipital artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001614': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001614', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001070', 'children': ['http://purl.org/sig/ont/fma/fma49660', 'http://purl.org/sig/ont/fma/fma49669', 'http://purl.obolibrary.org/obo/UBERON_0035042', 'http://purl.obolibrary.org/obo/UBERON_0035261', 'http://purl.obolibrary.org/obo/UBERON_0001615', 'http://purl.obolibrary.org/obo/UBERON_0015157'], 'synonymLabels': [], 'label': 'superficial temporal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001615': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001615', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001615', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'children': [], 'synonymLabels': [], 'label': 'transverse facial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001616': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001616', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001070', 'children': ['http://purl.org/sig/ont/fma/fma79467', 'http://purl.obolibrary.org/obo/UBERON_0009654', 'http://purl.org/sig/ont/fma/fma49745', 'http://purl.org/sig/ont/fma/fma49692', 'http://purl.org/sig/ont/fma/fma85528', 'http://purl.obolibrary.org/obo/UBERON_0001618', 'http://purl.obolibrary.org/obo/UBERON_0014695', 'http://purl.org/sig/ont/fma/fma49791', 'http://purl.obolibrary.org/obo/UBERON_0014693', 'http://purl.obolibrary.org/obo/UBERON_0004646', 'http://purl.obolibrary.org/obo/UBERON_0013648', 'http://purl.obolibrary.org/obo/UBERON_0010250', 'http://purl.org/sig/ont/fma/fma0327481', 'http://purl.org/sig/ont/fma/fma49746', 'http://purl.obolibrary.org/obo/UBERON_0018397', 'http://purl.org/sig/ont/fma/fma49751', 'http://purl.org/sig/ont/fma/fma49804'], 'synonymLabels': [], 'label': 'maxillary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001617': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001617', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001617', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014693', 'children': [], 'synonymLabels': ['mental branch of inferior alveolar artery', 'ramus mentalis (arteria alveolaris inferior)'], 'label': 'mental artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001618', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001618', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': [], 'label': 'buccal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001619', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': ['http://purl.org/sig/ont/fma/fma49962', 'http://purl.obolibrary.org/obo/UBERON_0012318', 'http://purl.obolibrary.org/obo/UBERON_0001620', 'http://purl.obolibrary.org/obo/UBERON_0001623', 'http://purl.obolibrary.org/obo/UBERON_0002270', 'http://purl.obolibrary.org/obo/UBERON_0001622', 'http://purl.org/sig/ont/fma/fma70778', 'http://purl.obolibrary.org/obo/UBERON_0014773', 'http://purl.obolibrary.org/obo/UBERON_0012319', 'http://purl.org/sig/ont/fma/fma70777', 'http://purl.obolibrary.org/obo/UBERON_0015160', 'http://purl.obolibrary.org/obo/UBERON_0012187'], 'synonymLabels': [], 'label': 'ophthalmic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001620': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001620', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001620', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['central artery of retina', 'retinal artery', \"Zinn's artery\"], 'label': 'central retinal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001622': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001622', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001622', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014772', 'http://purl.org/sig/ont/fma/fma51965', 'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-artery', 'https://purl.org/ccf/ASCTB-TEMP_zygomaticotemporal-artery'], 'synonymLabels': [], 'label': 'lacrimal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001623', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001623', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['dorsal nasal branch of ophthalmic artery', 'external nasal artery'], 'label': 'dorsal nasal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001624': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001624', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006764', 'https://purl.org/ccf/ASCTB-TEMP_anterior-internal-frontal-artery', 'http://purl.org/sig/ont/fma/fma50330', 'http://purl.org/sig/ont/fma/fma50329', 'https://purl.org/ccf/ASCTB-TEMP_inferior-parietal-artery', 'https://purl.org/ccf/ASCTB-TEMP_medial-lenticulostriate-artery', 'https://purl.org/ccf/ASCTB-TEMP_middle-internal-frontal-artery', 'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-anterior-cerebral-artery', 'https://purl.org/ccf/ASCTB-TEMP_paracentral-artery', 'http://purl.org/sig/ont/fma/fma50337', 'https://purl.org/ccf/ASCTB-TEMP_posterior-internal-frontal-artery', 'http://purl.org/sig/ont/fma/fma50327', 'https://purl.org/ccf/ASCTB-TEMP_superior-parietal-artery'], 'synonymLabels': [], 'label': 'anterior cerebral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001625': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001625', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001625', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001496', 'children': ['http://purl.org/sig/ont/fma/fma3851', 'http://purl.org/sig/ont/fma/fma15736', 'http://purl.org/sig/ont/fma/fma3840', 'http://purl.org/sig/ont/fma/fma3818', 'http://purl.org/sig/ont/fma/fma3823'], 'synonymLabels': [], 'label': 'right coronary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001626': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001626', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001626', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001496', 'children': ['http://purl.org/sig/ont/fma/fma3862', 'http://purl.obolibrary.org/obo/UBERON_0035422'], 'synonymLabels': [], 'label': 'left coronary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001627': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001627', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035225', 'http://purl.org/sig/ont/fma/fma77439', 'http://purl.obolibrary.org/obo/UBERON_0035462', 'http://purl.org/sig/ont/fma/fma50479', 'http://purl.org/sig/ont/fma/fma50475', 'http://purl.org/sig/ont/fma/fma71479', 'http://purl.org/sig/ont/fma/fma50466', 'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-middle-cerebral-artery', 'http://purl.obolibrary.org/obo/UBERON_0035222', 'http://purl.org/sig/ont/fma/fma50469', 'http://purl.org/sig/ont/fma/fma50437'], 'synonymLabels': ['Sylvian artery'], 'label': 'middle cerebral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001628', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': [], 'synonymLabels': ['caudal communicating segment', 'posterior communicating segment of the basilar artery'], 'label': 'posterior communicating artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001631': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001631', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004536', 'children': ['http://purl.org/sig/ont/fma/fma276805', 'http://purl.org/sig/ont/fma/fma9585', 'http://purl.obolibrary.org/obo/UBERON_0005435', 'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-fifth-or-sixth-lowermost-intercostal-spaces', 'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-third-fourth-and-fifth-intercostal-spaces', 'http://purl.org/sig/ont/fma/fma322627', 'http://purl.org/sig/ont/fma/fma12250', 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-mediastinal-lymph-node', 'http://purl.org/sig/ont/fma/fma5834', 'http://purl.org/sig/ont/fma/fma5032', 'http://purl.org/sig/ont/fma/fma5955', 'http://purl.org/sig/ont/fma/fma5033', 'http://purl.org/sig/ont/fma/fma12252', 'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node'], 'synonymLabels': ['trunk of thoracic duct tree'], 'label': 'thoracic duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001633': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001633', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001633', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001535', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009689', 'http://purl.org/sig/ont/fma/fma71492', 'http://purl.org/sig/ont/fma/fma50560', 'http://purl.obolibrary.org/obo/UBERON_0001636', 'http://purl.obolibrary.org/obo/UBERON_0001635'], 'synonymLabels': [], 'label': 'basilar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001634': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001634', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001634', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['MsA'], 'label': 'mesencephalic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001635': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001635', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001635', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001633', 'children': [], 'synonymLabels': [], 'label': 'superior cerebellar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001633', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035183', 'http://purl.org/sig/ont/fma/fma50631', 'http://purl.org/sig/ont/fma/fma50638', 'http://purl.org/sig/ont/fma/fma50630', 'http://purl.obolibrary.org/obo/UBERON_0001634', 'http://purl.org/sig/ont/fma/fma50629', 'http://purl.org/sig/ont/fma/fma50624'], 'synonymLabels': [], 'label': 'posterior cerebral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001639': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001639', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'parent': 'http://purl.org/sig/ont/fma/fma15415', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035392', 'https://purl.org/ccf/ASCTB-TEMP_inferior-vein-of-sappey', 'http://purl.obolibrary.org/obo/UBERON_0014690', 'http://purl.obolibrary.org/obo/UBERON_0035655', 'http://purl.org/sig/ont/fma/fma0329298', 'http://purl.obolibrary.org/obo/UBERON_0014691', 'http://purl.obolibrary.org/obo/UBERON_0001138', 'https://purl.org/ccf/ASCTB-TEMP_superior-vein-of-sappey', 'https://purl.org/ccf/ASCTB-TEMP_vein-of-burow'], 'synonymLabels': ['hepatic portal tree', 'liver portal vein', 'portal vein of liver', 'hepatic portal vein'], 'label': 'hepatic portal vein #2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001640': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001640', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001640', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005436', 'http://purl.obolibrary.org/obo/UBERON_0001192'], 'synonymLabels': ['celiac tree', 'coeliac artery'], 'label': 'celiac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001641', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005475', 'children': ['http://purl.org/sig/ont/fma/fma50784', 'http://purl.org/sig/ont/fma/fma51239', 'http://purl.obolibrary.org/obo/UBERON_0001670', 'http://purl.obolibrary.org/obo/UBERON_0001664', 'http://purl.org/sig/ont/fma/fma50771', 'http://purl.obolibrary.org/obo/UBERON_0036074'], 'synonymLabels': ['sinus transversus durae matris'], 'label': 'transverse sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001642': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001642', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001642', 'parent': 'http://purl.org/sig/ont/fma/fma50784', 'children': ['http://purl.org/sig/ont/fma/fma51238', 'http://purl.obolibrary.org/obo/UBERON_0035150'], 'synonymLabels': [], 'label': 'superior sagittal sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001643': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001643', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001643', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma52573', 'http://purl.org/sig/ont/fma/fma52572'], 'synonymLabels': ['nervus oculomotorius', 'nervus oculomotorius [III]', 'oculomotor III', 'oculomotor III nerve', 'oculomotor nerve [III]', 'oculomotor nerve tree', 'third cranial nerve'], 'label': 'oculomotor nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': [], 'synonymLabels': ['cranial nerve IV', 'fourth cranial nerve', 'nervus trochlearis [IV]', 'superior oblique nerve', 'trochlear IV nerve', 'trochlear nerve [IV]', 'trochlear nerve tree'], 'label': 'trochlear nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001645': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001645', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001645', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000375', 'http://purl.obolibrary.org/obo/UBERON_0000377', 'http://purl.obolibrary.org/obo/UBERON_0000348'], 'synonymLabels': ['fifth cranial nerve', 'nervus trigeminus', 'nervus trigeminus [v]', 'trigeminal nerve [V]', 'trigeminal nerve tree', 'trigeminal V', 'trigeminal v nerve'], 'label': 'trigeminal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001646', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001646', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': [], 'synonymLabels': ['abducens nerve [VI]', 'abducens nerve tree', 'abducens VI nerve', 'abducent nerve [VI]', 'lateral rectus nerve', 'nervus abducens', 'nervus abducens [VI]', 'sixth cranial nerve'], 'label': 'abducens nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001647', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma53278', 'http://purl.org/sig/ont/fma/fma53275', 'http://purl.org/sig/ont/fma/fma53310', 'http://purl.org/sig/ont/fma/fma53396', 'http://purl.obolibrary.org/obo/UBERON_0009675', 'http://purl.org/sig/ont/fma/fma53228', 'http://purl.org/sig/ont/fma/fma53425', 'http://purl.org/sig/ont/fma/fma53293', 'http://purl.org/sig/ont/fma/fma53426', 'http://purl.org/sig/ont/fma/fma53288', 'http://purl.org/sig/ont/fma/fma53417', 'http://purl.org/sig/ont/fma/fma53365', 'http://purl.org/sig/ont/fma/fma53303', 'http://purl.org/sig/ont/fma/fma53298', 'http://purl.org/sig/ont/fma/fma53291', 'http://purl.obolibrary.org/obo/UBERON_0018412', 'http://purl.org/sig/ont/fma/fma53307'], 'synonymLabels': ['nervus facialis [vii]', 'seventh cranial nerve', 'branchiomeric cranial nerve', 'face nerve', 'facial nerve [VII]', 'facial nerve tree', 'facial VII', 'facial VII nerve', 'nerve of face', 'nervus facialis'], 'label': 'facial nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001648', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001648', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma53431', 'http://purl.org/sig/ont/fma/fma53401'], 'synonymLabels': ['acoustic nerve', 'acoustic nerve (Crosby)', 'acoustic VIII nerve', 'CN-VIII', 'cochlear-vestibular nerve', 'cochleovestibular nerve', 'cranial nerve VIII', 'eighth cranial nerve', 'nervus vestibulocochlearis [viii]', 'stato-acoustic nerve', 'vestibulocochlear nerve [VIII]', 'vestibulocochlear nerve tree', 'vestibulocochlear VIII nerve', 'VIII nerve', 'VIIIth cranial nerve'], 'label': 'vestibulocochlear nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001649': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001649', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma53488', 'http://purl.obolibrary.org/obo/UBERON_0009009', 'http://purl.org/sig/ont/fma/fma53483', 'http://purl.org/sig/ont/fma/fma53492', 'http://purl.org/sig/ont/fma/fma53493', 'http://purl.org/sig/ont/fma/fma53480', 'http://purl.org/sig/ont/fma/fma53491', 'http://purl.org/sig/ont/fma/fma53490', 'http://purl.org/sig/ont/fma/fma77991', 'http://purl.org/sig/ont/fma/fma53486', 'http://purl.org/sig/ont/fma/fma53487', 'http://purl.org/sig/ont/fma/fma53489', 'http://purl.obolibrary.org/obo/UBERON_0036216'], 'synonymLabels': ['glossopharyngeal IX', 'glossopharyngeal IX nerve', 'glossopharyngeal nerve [IX]', 'glossopharyngeal nerve tree', 'nervus glossopharyngeus', 'nervus glossopharyngeus [ix]', 'ninth cranial nerve'], 'label': 'glossopharyngeal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001650', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma54407', 'http://purl.org/sig/ont/fma/fma54404', 'http://purl.org/sig/ont/fma/fma54406', 'http://purl.org/sig/ont/fma/fma54408', 'http://purl.org/sig/ont/fma/fma54405', 'http://purl.org/sig/ont/fma/fma54402', 'http://purl.org/sig/ont/fma/fma54400', 'http://purl.org/sig/ont/fma/fma82628', 'http://purl.org/sig/ont/fma/fma82625', 'http://purl.org/sig/ont/fma/fma82631'], 'synonymLabels': ['cranial nerve XII', 'hypoglossal nerve [XII]', 'hypoglossal nerve tree', 'hypoglossal XII', 'hypoglossal XII nerve', 'nervus hypoglossus [xii]', 'twelfth cranial nerve'], 'label': 'hypoglossal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001651', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001651', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002333', 'children': ['http://purl.org/sig/ont/fma/fma8618', 'http://purl.org/sig/ont/fma/fma8616'], 'synonymLabels': ['right main pulmonary artery', 'right pulmonary arterial tree'], 'label': 'right pulmonary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001652': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001652', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001652', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002333', 'children': ['https://purl.org/ccf/ASCTB-TEMP_apicoanterior-trunk-of-left-pulmonary-artery', 'http://purl.org/sig/ont/fma/fma9284', 'http://purl.org/sig/ont/fma/fma8755'], 'synonymLabels': ['left main pulmonary artery', 'left pulmonary arterial tree'], 'label': 'left pulmonary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001653': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001653', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014686', 'http://purl.obolibrary.org/obo/UBERON_0035659', 'http://purl.obolibrary.org/obo/UBERON_0003478', 'https://purl.org/ccf/ASCTB-TEMP_mental-vein', 'http://purl.obolibrary.org/obo/UBERON_0035662', 'http://purl.obolibrary.org/obo/UBERON_0001655', 'http://purl.obolibrary.org/obo/UBERON_0003477'], 'synonymLabels': ['face vein', 'vein of face'], 'label': 'facial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001654', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'children': [], 'synonymLabels': ['supra-orbital vein'], 'label': 'supraorbital vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001655': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001655', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001655', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': [], 'synonymLabels': [], 'label': 'submental vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001656': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001656', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001656', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_anterior-branch-of-retromandibular-vein', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001660', 'http://purl.obolibrary.org/obo/UBERON_0001658', 'http://purl.obolibrary.org/obo/UBERON_0001657', 'http://purl.obolibrary.org/obo/UBERON_0001659'], 'synonymLabels': ['posterior facial vein'], 'label': 'retromandibular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001657': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001657', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001657', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001656', 'children': [], 'synonymLabels': [], 'label': 'superficial temporal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001658': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001658', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001658', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001656', 'children': [], 'synonymLabels': [], 'label': 'middle temporal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001659': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001659', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001659', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001656', 'children': [], 'synonymLabels': [], 'label': 'transverse facial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001660': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001660', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001660', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001656', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014685'], 'synonymLabels': [], 'label': 'maxillary vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001661': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001661', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001661', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014685', 'children': [], 'synonymLabels': [], 'label': 'deep temporal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001664': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001664', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001664', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'children': [], 'synonymLabels': [], 'label': 'inferior cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001665': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001665', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001665', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004256', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001388', 'http://purl.obolibrary.org/obo/UBERON_0001389'], 'synonymLabels': [], 'label': 'triceps surae'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001669': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001669', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001669', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005481', 'children': [], 'synonymLabels': ['vein of superior cerebellar hemisphere'], 'label': 'superior cerebellar vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001670': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001670', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001670', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'children': [], 'synonymLabels': ['inferior vein of cerebellar hemisphere'], 'label': 'inferior cerebellar vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001672': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001672', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001672', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035530', 'children': [], 'synonymLabels': [], 'label': 'anterior cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001673': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001673', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001673', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003712', 'children': ['http://purl.obolibrary.org/obo/UBERON_0036300'], 'synonymLabels': ['retinal vein'], 'label': 'central retinal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001676': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001676', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'children': ['https://purl.org/ccf/ASCTB-TEMP_external-occipital-protuberance-of-squamous-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_foramen-magnum-of-basilar-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-transverse-sinus-of-squamous-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-canal-of-basilar-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_inferior-nuchal-line-of-squamous-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_internal-occipital-protuberance-of-squamous-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-basilar-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_occipital-condyle-of-basilar-part-of-occipital-bone', 'https://purl.org/ccf/ASCTB-TEMP_superior-nuchal-line-of-squamous-part-of-occipital-bone'], 'synonymLabels': [], 'label': 'occipital bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001677': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001677', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-clinoid-process-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_body-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_dorsum-sellae-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_foramen-lacerum-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_foramen-ovale-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_foramen-rotundum-of-sphenoid-bone', 'http://purl.obolibrary.org/obo/UBERON_0016492', 'https://purl.org/ccf/ASCTB-TEMP_greater-wings-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-fossa-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_lateral-pterygoid-plate-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_lesser-wings-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_medial-pterygoid-plate-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_optic-canal-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_posterior-clinoid-process-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-canal-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fossa-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-hamulus-of-sphenoid-bone', 'http://purl.org/sig/ont/fma/fma54682', 'https://purl.org/ccf/ASCTB-TEMP_sella-turcica-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_sphenoid-sinus-of-sphenoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_superior-orbital-fissure-of-sphenoid-bone'], 'synonymLabels': ['os sphenoidale', 'sphenoid', 'sphenoidal bone'], 'label': 'sphenoid bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001678': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001678', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'children': ['https://purl.org/ccf/ASCTB-TEMP_articular-tubercle-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_carotid-canal-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_external-auditory-meatus-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-posterior-deep-temporal-artery-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-sigmoid-sinus-of-mastoid-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-greater-petrosal-nerve', 'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-lesser-petrosal-nerve', 'https://purl.org/ccf/ASCTB-TEMP_internal-auditory-meatus-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-fossa-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_mastoid-foramen-of-mastoid-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_mastoid-notch-of-mastoid-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_mastoid-process-of-mastoid-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_petrotympanic-fissure-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_postglenoid-tubercle-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_styloid-process-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-foramen-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_supramastoid-crest-of-squamous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_trigeminal-impression-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_tympanic-caniliculus-of-petrous-part-of-temporal-bone', 'https://purl.org/ccf/ASCTB-TEMP_zygomatic-process-of-squamous-part-of-temporal-bone'], 'synonymLabels': [], 'label': 'temporal bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001679', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-ethmoidal-foramen-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_cribiform-plate-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_crista-galla-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-air-cells-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-bulla-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_middle-nasal-concha-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_olfactory-foramina-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_perpendicular-plate-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_posterior-ethmoidal-foramen-of-ethmoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_superior-nasal-concha-of-ethmoid-bone'], 'synonymLabels': ['ethmoid', 'ethmoidal bone', 'os ethmoidale'], 'label': 'ethmoid bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001680': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001680', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001680', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': ['https://purl.org/ccf/ASCTB-TEMP_fossa-for-lacrimal-sac-of-lacrimal-bone'], 'synonymLabels': ['lachrymal bone', 'lacrymal bone'], 'label': 'lacrimal bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001681': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001681', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001681', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': [], 'synonymLabels': [], 'label': 'nasal bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001682': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001682', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001682', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': ['https://purl.org/ccf/ASCTB-TEMP_greater-palatine-foramen-of-palatine-bone', 'http://purl.org/sig/ont/fma/fma52901', 'https://purl.org/ccf/ASCTB-TEMP_lesser-palatine-foramen-of-palatine-bone', 'http://purl.org/sig/ont/fma/fma52899'], 'synonymLabels': ['palatine'], 'label': 'palatine bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001683': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001683', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001683', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012110', 'http://purl.org/sig/ont/fma/fma289670', 'http://purl.obolibrary.org/obo/UBERON_0004654', 'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-foramen-of-zygomatic-bone'], 'synonymLabels': ['jugal bone', 'cheek bone', 'malar bone', 'orbital bone', 'os zygomaticum'], 'label': 'zygomatic bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001684': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001684', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': ['https://purl.org/ccf/ASCTB-TEMP_alveolar-border-of-mandible', 'http://purl.obolibrary.org/obo/UBERON_0011309', 'http://purl.org/sig/ont/fma/fma52833', 'https://purl.org/ccf/ASCTB-TEMP_digastric-fossa-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_inferior-mental-spine-of-mandible', 'http://purl.org/sig/ont/fma/fma59470', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-angle-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-canal-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-condyle-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-foramen-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-neck-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mandibular-notch-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mental-foramen-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mental-protuberance-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-groove-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-line-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fovea-of-mandible', 'http://purl.org/sig/ont/fma/fma52828', 'https://purl.org/ccf/ASCTB-TEMP_sublingual-fossa-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_submandibular-fossa-of-mandible', 'https://purl.org/ccf/ASCTB-TEMP_superior-mental-spine-of-mandible'], 'synonymLabels': ['inferior maxillary bone', 'mammaliam mandible', 'mandibulla'], 'label': 'mandible'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001685': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001685', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001685', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hyoid-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma59495', 'https://purl.org/ccf/ASCTB-TEMP_greater-cornu-of-hyoid-bone', 'https://purl.org/ccf/ASCTB-TEMP_lesser-cornu-of-hyoid-bone'], 'synonymLabels': [], 'label': 'hyoid bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001687': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001687', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001687', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010911', 'children': [], 'synonymLabels': ['stirrup'], 'label': 'stapes bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001688', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001688', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010911', 'children': [], 'synonymLabels': ['incus'], 'label': 'incus bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001689': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001689', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001689', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010911', 'children': [], 'synonymLabels': ['malleus'], 'label': 'malleus bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001700': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001700', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001700', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009127', 'children': [], 'synonymLabels': ['facial VII ganglion', 'ganglion genicularum', 'genicular ganglion', 'gVII'], 'label': 'geniculate ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001701': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001701', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001701', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005360'], 'synonymLabels': ['ganglion of glossopharyngeal nerve', 'ganglion of glosspharyngeal nerve', 'glossopharyngeal IX ganglion'], 'label': 'glossopharyngeal ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001703': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001703', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001703', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004766', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001679', 'http://purl.obolibrary.org/obo/UBERON_0000209', 'http://purl.obolibrary.org/obo/UBERON_0001676', 'http://purl.obolibrary.org/obo/UBERON_0000210', 'http://purl.obolibrary.org/obo/UBERON_0001677', 'http://purl.obolibrary.org/obo/UBERON_0001678'], 'synonymLabels': ['brain box'], 'label': 'neurocranium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001714', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001805', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009127', 'http://purl.obolibrary.org/obo/UBERON_0001701', 'http://purl.obolibrary.org/obo/UBERON_0002058', 'http://purl.obolibrary.org/obo/UBERON_0003963', 'http://purl.obolibrary.org/obo/UBERON_0003962', 'http://purl.obolibrary.org/obo/UBERON_0002059', 'http://purl.obolibrary.org/obo/UBERON_0005362'], 'synonymLabels': ['cranial ganglion part of peripheral nervous system', 'cranial ganglion/nerve', 'cranial nerve ganglion', 'cranial neural ganglion', 'cranial neural tree organ ganglion', 'ganglion of cranial nerve', 'ganglion of cranial neural tree organ'], 'label': 'cranial ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001717': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001717', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001717', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0024151', 'children': [], 'synonymLabels': ['spinal nucleus of cranial nerve v', 'trigeminal nerve spinal tract nucleus', 'trigeminal spinal nucleus', 'trigeminal v spinal sensory nucleus', 'spinal nucleus of trigeminal nerve'], 'label': 'spinal trigeminal nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001759': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001759', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma6232', 'http://purl.org/sig/ont/fma/fma77213', 'http://purl.org/sig/ont/fma/fma6247', 'http://purl.org/sig/ont/fma/fma53612', 'http://purl.org/sig/ont/fma/fma6233', 'http://purl.org/sig/ont/fma/fma65514', 'http://purl.org/sig/ont/fma/fma78582', 'http://purl.org/sig/ont/fma/fma6231', 'http://purl.org/sig/ont/fma/fma6234', 'http://purl.org/sig/ont/fma/fma65515', 'http://purl.obolibrary.org/obo/UBERON_0003716', 'http://purl.org/sig/ont/fma/fma6246', 'http://purl.org/sig/ont/fma/fma6670', 'http://purl.org/sig/ont/fma/fma6239', 'http://purl.obolibrary.org/obo/UBERON_0011326', 'http://purl.org/sig/ont/fma/fma6237'], 'synonymLabels': ['nervus vagus [x]', 'tenth cranial nerve', 'vagus', 'vagus nerve [X]', 'vagus nerve tree', 'vagus X nerve'], 'label': 'vagus nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001769': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001769', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001769', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002506'], 'synonymLabels': [], 'label': 'iris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001772': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001772', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001772', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000964', 'children': [], 'synonymLabels': ['anterior corneal epithelium', 'cornea epithelial tissue', 'cornea epithelium', 'epithelial tissue of cornea', 'epithelium anterius (cornea)', 'epithelium anterius corneae', 'epithelium corneæ anterior layer', 'epithelium of cornea', 'external epithelium of cornea'], 'label': 'corneal epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001773', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004904', 'children': [], 'synonymLabels': [], 'label': 'sclera'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001775': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001775', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001775', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001778', 'http://purl.obolibrary.org/obo/UBERON_0001605'], 'synonymLabels': ['ocular ciliary body'], 'label': 'ciliary body'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001776': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001776', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001776', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002203', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005336'], 'synonymLabels': ['choroid', 'choroid coat', 'choroidea', 'eye choroid', 'posterior uvea'], 'label': 'optic choroid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001778': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001778', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001778', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001775', 'children': [], 'synonymLabels': ['ciliary body epithelium', 'epithelium of ciliary body', 'ocular ciliary epithelium'], 'label': 'ciliary epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001780': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001780', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000010', 'children': ['http://purl.org/sig/ont/fma/fma5863', 'http://purl.obolibrary.org/obo/UBERON_0009624', 'http://purl.obolibrary.org/obo/UBERON_0000962', 'http://purl.obolibrary.org/obo/UBERON_0009625', 'http://purl.obolibrary.org/obo/UBERON_0005476', 'http://purl.obolibrary.org/obo/UBERON_0003726'], 'synonymLabels': ['backbone nerve', 'nerve of backbone', 'nerve of spinal column', 'nerve of spine', 'nerve of vertebral column', 'spinal column nerve', 'spinal nerve tree', 'spine nerve', 'vertebral column nerve'], 'label': 'spinal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001782', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001782', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'children': [], 'synonymLabels': ['pigmented layer of retina', 'outer pigmented layer of retina', 'pigment epithelium of retina', 'pigmented retina epithelium', 'pigmented retinal epithelium', 'retinal pigment epithelium', 'stratum pigmentosum (retina)', 'stratum pigmentosum retinae'], 'label': 'retinal pigmented epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001783': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001783', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001783', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': [], 'synonymLabels': ['optic disc', 'optic disk'], 'label': 'optic nerve head'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001785': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001785', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001646', 'http://purl.obolibrary.org/obo/UBERON_0001647', 'http://purl.obolibrary.org/obo/UBERON_0001649', 'http://purl.obolibrary.org/obo/UBERON_0001650', 'http://purl.obolibrary.org/obo/UBERON_0001643', 'http://purl.obolibrary.org/obo/UBERON_0001579', 'http://purl.org/sig/ont/fma/fma50863', 'http://purl.org/sig/ont/fma/fma6720', 'http://purl.obolibrary.org/obo/UBERON_0001645', 'http://purl.obolibrary.org/obo/UBERON_0001644', 'http://purl.obolibrary.org/obo/UBERON_0001759', 'http://purl.obolibrary.org/obo/UBERON_0001648'], 'synonymLabels': ['cranial neural tree organ'], 'label': 'cranial nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001789': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001789', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001789', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'children': [], 'synonymLabels': ['outer nuclear layer of retina', 'neural retina outer nuclear layer', 'retina outer nuclear layer', 'retinal outer nuclear layer', 'stratum nucleare externum (retina)', 'stratum nucleare externum retinae'], 'label': 'outer nuclear layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001791': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001791', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001791', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'children': [], 'synonymLabels': ['inner nuclear layer of retina', 'intermediate cell layer', 'neural retina inner nuclear layer', 'retina inner nuclear layer', 'retinal inner nuclear layer', 'stratum nucleare internum', 'stratum nucleare internum retinae'], 'label': 'inner nuclear layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001792': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001792', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001792', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'children': [], 'synonymLabels': ['ganglionic layer of retina', 'ganglionic cell layer of retina', 'GCL layer', 'retina ganglion cell layer', 'retina ganglion layer', 'retinal ganglion layer', 'RGC layer', 'stratum ganglionicum (retina)'], 'label': 'retinal ganglion cell layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001800': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001800', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001800', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000045', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000044', 'http://purl.obolibrary.org/obo/UBERON_0002824'], 'synonymLabels': ['ganglion sensorium'], 'label': 'sensory ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001803': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001803', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001803', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000965', 'children': [], 'synonymLabels': ['epithelium of lens', 'lens epithelium', 'epithelial tissue of eye lens', 'epithelial tissue of lens', 'epithelium lentis', 'epithelium of eye lens', 'eye lens epithelial tissue', 'eye lens epithelium', 'lens epithelial tissue'], 'label': 'epithelial layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001805', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001805', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000045', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014463', 'http://purl.obolibrary.org/obo/UBERON_0001714', 'http://purl.obolibrary.org/obo/UBERON_0001808', 'http://purl.obolibrary.org/obo/UBERON_0001807', 'http://purl.obolibrary.org/obo/UBERON_0003964'], 'synonymLabels': ['autonomic nervous system ganglion', 'ganglion of autonomic nervous system', 'ganglion of visceral nervous system', 'visceral nervous system ganglion'], 'label': 'autonomic ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001807': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001807', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001807', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001805', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001991', 'http://purl.org/sig/ont/fma/fma6567', 'http://purl.org/sig/ont/fma/fma6472', 'http://purl.org/sig/ont/fma/fma6473', 'http://purl.obolibrary.org/obo/UBERON_0000961'], 'synonymLabels': ['ganglion of sympathetic trunk', 'ganglion trunci sympathetici', 'ganglion trunci sympathici', 'sympathetic chain ganglion'], 'label': 'paravertebral ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001808': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001808', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001808', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001805', 'children': [], 'synonymLabels': [], 'label': 'parasympathetic ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001810': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001810', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000010', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035772', 'http://purl.obolibrary.org/obo/UBERON_0001814', 'http://purl.obolibrary.org/obo/UBERON_0003725', 'http://purl.obolibrary.org/obo/UBERON_0035768', 'http://purl.obolibrary.org/obo/UBERON_0000429', 'http://purl.org/sig/ont/fma/fma67532', 'http://purl.obolibrary.org/obo/UBERON_0002014', 'http://purl.obolibrary.org/obo/UBERON_0002024', 'http://purl.obolibrary.org/obo/UBERON_0034987', 'http://purl.obolibrary.org/obo/UBERON_0035771', 'http://purl.obolibrary.org/obo/UBERON_0011194', 'http://purl.org/sig/ont/fma/fma6638', 'http://purl.org/sig/ont/fma/fma6647', 'http://purl.obolibrary.org/obo/UBERON_0034986', 'http://purl.obolibrary.org/obo/UBERON_0001813', 'http://purl.org/sig/ont/fma/fma61917', 'http://purl.obolibrary.org/obo/UBERON_0002013', 'http://purl.org/sig/ont/fma/fma6648'], 'synonymLabels': [], 'label': 'nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001811': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001811', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001811', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['https://purl.org/ccf/ASCTB-TEMP_conjuctival-epithelium'], 'synonymLabels': ['conjunctivae', 'conjunctivas', 'tunica conjunctiva', 'wall of conjunctival sac'], 'label': 'conjunctiva'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001813': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001813', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001813', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['plexus nervorum spinalium', 'plexus of spinal nerves', 'somatic nerve plexus'], 'label': 'spinal nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001814': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001814', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001493', 'http://purl.org/sig/ont/fma/fma65279', 'http://purl.org/sig/ont/fma/fma65307', 'http://purl.org/sig/ont/fma/fma65296', 'http://purl.org/sig/ont/fma/fma65275', 'http://purl.org/sig/ont/fma/fma65246', 'http://purl.org/sig/ont/fma/fma39079', 'http://purl.org/sig/ont/fma/fma65293', 'http://purl.obolibrary.org/obo/UBERON_0001148', 'http://purl.obolibrary.org/obo/UBERON_0003724', 'http://purl.obolibrary.org/obo/UBERON_0001492', 'http://purl.org/sig/ont/fma/fma65304', 'http://purl.org/sig/ont/fma/fma37025', 'http://purl.org/sig/ont/fma/fma65290', 'http://purl.obolibrary.org/obo/UBERON_0001494'], 'synonymLabels': ['brachial plexus'], 'label': 'brachial nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001821': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001821', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001821', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['sebaceous glands'], 'label': 'sebaceous gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001870': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001870', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001870', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001384'], 'synonymLabels': ['cortex of frontal lobe', 'frontal lobe cortex', 'gray matter of frontal lobe', 'grey matter of frontal lobe'], 'label': 'frontal cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001871': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001871', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002751', 'http://purl.obolibrary.org/obo/UBERON_0002771', 'http://purl.obolibrary.org/obo/UBERON_0022364', 'http://purl.obolibrary.org/obo/UBERON_0023861', 'http://purl.obolibrary.org/obo/UBERON_0022268', 'http://purl.obolibrary.org/obo/UBERON_0002769', 'http://purl.obolibrary.org/obo/UBERON_0002576', 'http://purl.obolibrary.org/obo/UBERON_0003939'], 'synonymLabels': ['lobus temporalis'], 'label': 'temporal lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001872': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001872', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006088', 'http://purl.obolibrary.org/obo/UBERON_0035934', 'http://purl.obolibrary.org/obo/UBERON_0002911', 'http://purl.obolibrary.org/obo/UBERON_0002581', 'http://purl.obolibrary.org/obo/UBERON_0006093', 'http://purl.obolibrary.org/obo/UBERON_0006094'], 'synonymLabels': ['regio parietalis'], 'label': 'parietal lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001873': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001873', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001873', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010011', 'children': [], 'synonymLabels': ['caudatus'], 'label': 'caudate nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001874': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001874', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001874', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010011', 'children': [], 'synonymLabels': ['nucleus putamen'], 'label': 'putamen'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001876': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001876', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': ['http://purl.obolibrary.org/obo/UBERON_0034673', 'http://purl.obolibrary.org/obo/UBERON_0002890', 'http://purl.obolibrary.org/obo/UBERON_0034991', 'http://purl.obolibrary.org/obo/UBERON_0006107', 'http://purl.obolibrary.org/obo/UBERON_0002889', 'http://purl.obolibrary.org/obo/UBERON_0001880', 'http://purl.obolibrary.org/obo/UBERON_0002883', 'http://purl.obolibrary.org/obo/UBERON_0002886', 'http://purl.obolibrary.org/obo/UBERON_0002892', 'http://purl.obolibrary.org/obo/UBERON_0002891'], 'synonymLabels': ['archistriatum', 'amygdaloid body', 'amygdaloid nuclear complex', 'amygdaloid nuclear groups', 'amygdala'], 'label': 'amygdaloid complex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001880': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001880', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001880', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['bed nuclei of the stria terminalis', 'bed nucleus of the stria terminalis', 'bed nucleus stria terminalis (Johnson)', 'bed nucleus striae terminalis', 'intercalate nucleus of stria terminalis', 'interstitial nucleus of stria terminalis', 'nuclei of stria terminalis', 'nucleus of stria terminalis', 'nucleus striae terminalis', 'stria terminalis nucleus'], 'label': 'bed nucleus of stria terminalis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001882': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001882', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001882', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010011', 'children': [], 'synonymLabels': ['accumbens nucleus', 'colliculus of caudate nucleus', 'nucleus accumbens septi'], 'label': 'nucleus accumbens'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001884': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001884', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': ['http://purl.org/sig/ont/fma/fma6205', 'http://purl.org/sig/ont/fma/fma6206', 'http://purl.org/sig/ont/fma/fma6203', 'http://purl.org/sig/ont/fma/fma6202', 'http://purl.org/sig/ont/fma/fma6200', 'http://purl.org/sig/ont/fma/fma6204', 'http://purl.org/sig/ont/fma/fma6201', 'http://purl.org/sig/ont/fma/fma6210', 'http://purl.org/sig/ont/fma/fma6207', 'http://purl.org/sig/ont/fma/fma6208', 'http://purl.org/sig/ont/fma/fma6209'], 'synonymLabels': [], 'label': 'phrenic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001887': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001887', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001887', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': ['internal capsule of telencephalon', 'brain internal capsule', 'internal capsule radiations'], 'label': 'internal capsule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001890': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001890', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001890', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000955', 'children': ['http://purl.obolibrary.org/obo/UBERON_0019264', 'http://purl.obolibrary.org/obo/UBERON_0019261'], 'synonymLabels': ['forebrain'], 'label': 'forebrain (prosencephalon)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001891': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001891', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001891', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000955', 'children': ['http://purl.obolibrary.org/obo/UBERON_0019267', 'http://purl.obolibrary.org/obo/UBERON_0002289', 'http://purl.obolibrary.org/obo/UBERON_0016554'], 'synonymLabels': ['midbrain'], 'label': 'midbrain (mesencephalon)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001896': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001896', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001896', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019263', 'children': ['http://purl.obolibrary.org/obo/UBERON_0024151'], 'synonymLabels': ['bulbus'], 'label': 'medulla oblongata'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001897': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001897', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001897', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004703', 'http://purl.obolibrary.org/obo/UBERON_0001899', 'http://purl.obolibrary.org/obo/UBERON_0001903', 'http://purl.obolibrary.org/obo/UBERON_0001906', 'http://purl.obolibrary.org/obo/UBERON_0001900'], 'synonymLabels': ['wider thalamus', 'dorsal plus ventral thalamus'], 'label': 'thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001898': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001898', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001898', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002206', 'http://purl.obolibrary.org/obo/UBERON_0001929', 'http://purl.obolibrary.org/obo/UBERON_0000435'], 'synonymLabels': ['preoptico-hypothalamic area', 'preoptico-hypothalamic region'], 'label': 'hypothalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001899': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001899', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001899', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001897', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008993', 'http://purl.obolibrary.org/obo/UBERON_0001920', 'http://purl.obolibrary.org/obo/UBERON_0001905'], 'synonymLabels': [], 'label': 'epithalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001900': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001900', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001900', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001897', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001907'], 'synonymLabels': ['subthalamic region', 'subthalamus', 'thalamus ventralis'], 'label': 'ventral thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001901': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001901', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001901', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003126', 'children': [], 'synonymLabels': ['epithelium of trachea', 'epithelial tissue of trachea', 'epithelial tissue of windpipe', 'epithelium of windpipe', 'trachea epithelial tissue', 'trachea epithelium', 'windpipe epithelial tissue', 'windpipe epithelium'], 'label': 'tracheal epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001903': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001903', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001903', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001897', 'children': [], 'synonymLabels': ['thalamic reticular nucleus', 'nucleus reticularis thalami', 'reticular nuclear group', 'reticular nucleus of thalamus', 'reticular nucleus of the thalamus', 'reticular nucleus-2', 'reticular thalamic nucleus'], 'label': 'reticular formation of thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001905': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001905', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001905', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001899', 'children': [], 'synonymLabels': ['corpus pineale', 'glandula pinealis', 'pineal gland', 'pineal organ'], 'label': 'pineal body'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001906': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001906', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001906', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001897', 'children': [], 'synonymLabels': ['body of Forel', 'body of Luys', \"Luys' nucleus\", 'nucleus of corpus luysii', 'nucleus of Luys', 'nucleus subthalamicus', 'subthalamic nucleus (of Luys)', 'subthalamic nucleus'], 'label': 'subthalamic nucleus (subthalamus)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001907': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001907', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001907', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001900', 'children': [], 'synonymLabels': [], 'label': 'zona incerta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001908': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001908', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001908', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': ['optic lemniscus'], 'label': 'optic tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001911', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001911', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': [], 'synonymLabels': ['lactiferous gland', 'glandula mammaria'], 'label': 'mammary gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001920': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001920', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001920', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001899', 'children': [], 'synonymLabels': ['nuclei paraventriculares thalami', 'paraventricular gray', 'paraventricular nuclei of thalamus', 'paraventricular thalamic nucleus'], 'label': 'paraventricular nucleus of thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001921': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001921', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001921', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['reuniens nucleus', 'medioventral nucleus', 'nucleus reuniens', 'reuniens thalamic nucleus'], 'label': 'reunions nucleus of thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001922': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001922', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001922', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['parafascicular nucleus of thalamus', 'parafascicular nucleus of the thalamus', 'parafascicular thalamic nucleus', 'nuclei parafasciculares thalami', 'nucleus parafascicularis', 'nucleus parafascicularis (Hassler)', 'nucleus parafascicularis thalami', 'parafascicular nucleus (vogt)'], 'label': 'parafascicular nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001925': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001925', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001925', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['ventral lateral nucleus of thalamus', 'lateral ventral nucleus of thalamus', 'nuclei ventrales laterales thalami', 'nucleus ventralis intermedius', 'nucleus ventralis lateralis', 'nucleus ventralis lateralis thalami', 'nucleus ventralis thalami lateralis', 'nucleus ventrolateralis thalami', 'ventral lateral complex of thalamus', 'ventral lateral thalamic nuclei', 'ventral lateral thalamic nucleus', 'ventrolateral thalamic nucleus'], 'label': 'ventral lateral nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001926': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001926', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001926', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['corpus geniculatum laterales', 'lateral geniculate complex', 'lateral geniculate nucleus', 'nucleus geniculatus lateralis', 'lateral geniculate body'], 'label': 'lateral geniculate nuclei'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001927': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001927', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001927', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['corpus geniculatum mediale', 'medial geniculate complex', 'medial geniculate nucleus', 'nuclei corporis geniculati medialis', 'medial geniculate body'], 'label': 'medial geniculate nuclei'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001929': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001929', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001929', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001898', 'children': [], 'synonymLabels': ['supraoptic nucleus', 'nucleus supraopticus', 'supra-optic nucleus', 'supraoptic nucleus of hypothalamus'], 'label': 'supraoptic region'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001943': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001943', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001943', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['tegmentum mesencephali', 'tegmentum of midbrain'], 'label': 'midbrain tegmentum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001944': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001944', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001944', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['area pretectalis', 'nuclei pretectales', 'pretectal area', 'pretectal nuclei', 'pretectum'], 'label': 'pretectal region'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001945': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001945', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001945', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['anterior colliculus', 'anterior corpus quadrigeminum', 'cranial colliculus', 'optic tectum'], 'label': 'superior colliculus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001946': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001946', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001946', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['caudal colliculus', 'inferior colliculi', 'posterior colliculus', 'posterior corpus quadrigeminum'], 'label': 'inferior colliculus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001947': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001947', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001947', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['nucleus ruber'], 'label': 'red nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001955', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002188', 'children': [], 'synonymLabels': ['bronchiolus respiratorius epithelial tissue', 'bronchiolus respiratorius epithelium', 'epithelial tissue of bronchiolus respiratorius', 'epithelial tissue of respiratory bronchiole', 'epithelium of bronchiolus respiratorius', 'respiratory bronchiole epithelial tissue', 'respiratory bronchiole epithelium'], 'label': 'epithelium of respiratory bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001956': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001956', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001956', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'children': [], 'synonymLabels': ['bronchi cartilage', 'bronchial cartilage', 'bronchial cartilage ring', 'bronchial trunk cartilage', 'bronchus cartilage', 'cartilage of bronchi', 'cartilage of bronchial trunk', 'cartilagines bronchiales'], 'label': 'cartilage of bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001958': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001958', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001958', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002187', 'children': [], 'synonymLabels': ['bronchiolus terminalis epithelial tissue', 'bronchiolus terminalis epithelium', 'epithelial tissue of bronchiolus terminalis', 'epithelial tissue of terminal bronchiole', 'epithelium of bronchiolus terminalis', 'epithelium of terminal bronchiole', 'terminal bronchiole epithelial tissue'], 'label': 'terminal bronchiole epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001959': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001959', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'parent': 'http://purl.obolibrary.org/obo/UBERON_1000023', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-arteries', 'http://purl.obolibrary.org/obo/UBERON_0001960', 'http://purl.obolibrary.org/obo/UBERON_0004041', 'http://purl.obolibrary.org/obo/UBERON_0004042', 'http://purl.obolibrary.org/obo/UBERON_0010401', 'https://purl.org/ccf/ASCTB-TEMP_white-pulp-lymphatic-vessels'], 'synonymLabels': ['spleen white pulp', 'splenic white pulp', 'pulpa alba', 'white pulp of spleen'], 'label': 'white pulp'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001960': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001960', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001960', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-pals', 'https://purl.org/ccf/ASCTB-TEMP_outer-pals'], 'synonymLabels': ['periarterial lymphoid sheath', 'periarteriolar sheath', 'spleen periarteriolar lymphatic sheath', 'T cell domain of the splenic white pulp', 'PALS', 'periarterial lymphatic sheath'], 'label': 'periarteriolar lymphoid sheath (pals)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001961': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001961', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001961', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['epithelio-lymphoid tissue', 'MALT', 'mucosa associated lymphatic tissue', 'mucosa associated lymphoid tissue', 'mucosa-associated lymphoid tissue', 'mucosal-associated lymphatic tissue', 'mucosal-associated lymphoid tissue'], 'label': 'dermal skin-associated lymphoid tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001962', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000317', 'children': [], 'synonymLabels': ['gut associated lymphoid tissue', 'gut-associated lymphoid tissue'], 'label': 'gut associated lymphoid tissue (galt)/isolated lymphoid follicles (ilf)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001964', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018679', 'children': [], 'synonymLabels': ['least thoracic splanchnic nerve', 'lowest splanchnic nerve', 'nervus splanchnicus imus', 'ramus renalis nervus splanchnici minoris', 'renal branch of lesser splanchnic nerve', 'renal nerve'], 'label': 'least splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001978': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001978', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001978', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007324', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000016', 'http://purl.obolibrary.org/obo/UBERON_0000017'], 'synonymLabels': ['pancreas parenchyma', 'pancreatic parenchyma'], 'label': 'parenchyma of pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001979': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001979', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001979', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': [], 'label': 'venule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001981': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001981', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004537', 'children': ['http://purl.org/sig/ont/fma/fma49555', 'http://purl.org/sig/ont/fma/fma49497', 'http://purl.obolibrary.org/obo/UBERON_0004638', 'http://purl.obolibrary.org/obo/UBERON_0001610', 'http://purl.obolibrary.org/obo/UBERON_0001070', 'http://purl.obolibrary.org/obo/UBERON_0001612', 'https://purl.org/ccf/ASCTB-TEMP_peritonsillar-plexus-of-veins', 'http://purl.obolibrary.org/obo/UBERON_0004237'], 'synonymLabels': ['region of vascular tree organ', 'vascular tree organ region'], 'label': 'blood vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001982': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001982', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001982', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['blood capillary', 'capillary vessel'], 'label': 'capillary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001985': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001985', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001985', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000964', 'children': [], 'synonymLabels': ['cornea endothelium', 'endothelium of cornea'], 'label': 'corneal endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001986', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001986', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009091', 'children': [], 'synonymLabels': ['endothelium'], 'label': 'endothelium (non glomerular)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001987': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001987', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001987', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005630', 'http://purl.obolibrary.org/obo/UBERON_8600038', 'http://purl.obolibrary.org/obo/UBERON_0002331'], 'synonymLabels': ['allantoic placenta', 'eutherian placenta'], 'label': 'placenta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001989': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001989', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001989', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001991', 'children': [], 'synonymLabels': ['superior cervical sympathetic ganglion'], 'label': 'superior cervical ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001990', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001991', 'children': [], 'synonymLabels': ['middle cervical sympathetic ganglion'], 'label': 'middle cervical ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0001991': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0001991', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0001991', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001807', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002441', 'http://purl.obolibrary.org/obo/UBERON_0001990', 'http://purl.obolibrary.org/obo/UBERON_0001989'], 'synonymLabels': ['cervical sympathetic ganglion'], 'label': 'cervical ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001370', 'http://purl.org/sig/ont/fma/fma22315', 'http://purl.obolibrary.org/obo/UBERON_0008521', 'http://purl.obolibrary.org/obo/UBERON_0019202', 'http://purl.org/sig/ont/fma/fma22298', 'http://purl.obolibrary.org/obo/UBERON_0008529', 'http://purl.org/sig/ont/fma/fma22321', 'http://purl.obolibrary.org/obo/UBERON_0019203', 'https://purl.org/ccf/ASCTB-TEMP_tensor-fascia-latae-muscle'], 'synonymLabels': [], 'label': 'gluteal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002006', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000029', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410067', 'http://purl.obolibrary.org/obo/UBERON_8410066', 'http://purl.obolibrary.org/obo/UBERON_0010395', 'http://purl.obolibrary.org/obo/UBERON_0010753', 'http://purl.obolibrary.org/obo/UBERON_8410041'], 'synonymLabels': ['lymph node cortex', 'cortex of lymph node'], 'label': 'cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002007', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002007', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410033', 'http://purl.obolibrary.org/obo/UBERON_8410034', 'http://purl.obolibrary.org/obo/UBERON_0009745', 'http://purl.obolibrary.org/obo/UBERON_0009744'], 'synonymLabels': ['lymph node medulla', 'medulla of lymph node'], 'label': 'medulla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007196', 'children': [], 'synonymLabels': ['plexus pulmonalis', 'pulmonary plexus'], 'label': 'pulmonary nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002011', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001397', 'children': [], 'synonymLabels': [], 'label': 'thoracodorsal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002012', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008886', 'children': [], 'synonymLabels': ['pulmonary arterial tree', 'pulmonary arterial tree organ part'], 'label': 'pulmonary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002013', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['nervus presacralis', 'plexus hypogastricus superior', 'presacral nerve', 'superior hypogastric plexus'], 'label': 'superior hypogastric nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002014', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002014', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['plexus hypogastricus inferior', 'inferior hypogastric plexus', 'pelvic nerve plexus', 'pelvic plexus', 'plexus nervosus hypogastricus inferior', 'plexus nervosus pelvicus', 'plexus pelvicus'], 'label': 'inferior hypogastric nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002015', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002015', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': [], 'synonymLabels': ['capsula fibrosa renis', 'capsule of kidney', 'fibrous capsule of kidney', 'renal capsule'], 'label': 'kidney capsule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002016', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014904'], 'synonymLabels': ['pulmonary venous tree organ part'], 'label': 'pulmonary vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002017', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001279', 'children': [], 'synonymLabels': ['portal venous tree organ part'], 'label': 'portal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006092', 'http://purl.obolibrary.org/obo/UBERON_0014608', 'http://purl.obolibrary.org/obo/UBERON_0002943', 'http://purl.obolibrary.org/obo/UBERON_0002902', 'https://purl.org/ccf/ASCTB-TEMP_occipitoparietal-transition-region', 'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-fusiform-gyrus-occipital-part', 'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-transition-region', 'http://purl.obolibrary.org/obo/UBERON_0002948'], 'synonymLabels': ['regio occipitalis'], 'label': 'occipital lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002022', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'children': ['http://purl.obolibrary.org/obo/UBERON_0034891'], 'synonymLabels': ['insula', 'central lobe', 'cortex of island', 'insula lobule', 'insular region', 'island of Reil', 'lobus insularis'], 'label': 'insular lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002023', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': [], 'synonymLabels': ['dorsal claustrum', 'dorsal portion of claustrum', 'claustrum of brain'], 'label': 'claustrum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002024', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002024', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.org/sig/ont/fma/fma67549'], 'synonymLabels': ['internal carotid plexus', 'plexus caroticus internus'], 'label': 'internal carotid nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002025': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002025', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002025', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001003', 'children': [], 'synonymLabels': ['basal cell layer of epidermis', 'basal epidermal layer', 'epidermal basal stratum', 'epidermis stratum basale', 'stratum basalis of epidermis', 'stratum germinativum', 'stratum germinosum of epidermis', 'stratum basale of epidermis'], 'label': 'stratum basale (sb)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002026', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002026', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001003', 'children': [], 'synonymLabels': ['epidermis stratum spinosum', 'prickle cell layer of epidermis', 'squamous cell layer of epidermis', 'stratum spinosum', 'stratum spinosum of epidermis'], 'label': 'stratum spinosum (ss)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002027', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002027', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001003', 'children': [], 'synonymLabels': ['cornified layer', 'epidermis stratum corneum', 'horny layer of epidermis', 'keratinized squame layer of epidermis', 'stratum corneum of epidermis'], 'label': 'stratum corneum (sc)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002028', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000955', 'children': ['http://purl.obolibrary.org/obo/UBERON_0019263', 'http://purl.obolibrary.org/obo/UBERON_0004086', 'http://purl.obolibrary.org/obo/UBERON_0019258'], 'synonymLabels': ['hindbrain'], 'label': 'hindbrain (rhombencephalon)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002037': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002037', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002037', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019263', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002129', 'http://purl.obolibrary.org/obo/UBERON_0002130', 'http://purl.obolibrary.org/obo/UBERON_0004720', 'http://purl.obolibrary.org/obo/UBERON_0014644', 'http://purl.obolibrary.org/obo/UBERON_0027285'], 'synonymLabels': ['epencephalon-1'], 'label': 'cerebellum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002038', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['nucleus of basis pedunculi', \"Soemmering's substance\"], 'label': 'substantia nigra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002040', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012416', 'https://purl.org/ccf/ASCTB-TEMP_bronchial-arteriole', 'http://purl.obolibrary.org/obo/UBERON_0004848'], 'synonymLabels': ['bronchial arterial tree'], 'label': 'bronchial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002042', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_kidney-lymphatic-vessel', 'children': [], 'synonymLabels': ['lymphatic vessel endothelium', 'endothelium of lymph vessel', 'endothelium of lymphatic vessel', 'lymph vessel endothelium', 'lymphatic endothelium'], 'label': 'endothelium (non glomerular)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002048', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002048', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000114', 'http://purl.obolibrary.org/obo/UBERON_0004883', 'http://purl.obolibrary.org/obo/UBERON_0001004', 'http://purl.obolibrary.org/obo/UBERON_0010369', 'http://purl.obolibrary.org/obo/UBERON_0002401'], 'synonymLabels': ['pulmo'], 'label': 'lung'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002049', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002049', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['vascular network'], 'label': 'vasculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002051', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002051', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600000', 'children': [], 'synonymLabels': ['bronchiolar epithelium', 'bronchiole epithelial tissue', 'bronchiole epithelium', 'epithelial tissue of bronchiole'], 'label': 'epithelium of bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002056', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002056', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': [], 'label': 'inferior suprarenal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002058', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002058', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': ['http://purl.obolibrary.org/obo/UBERON_0022302'], 'synonymLabels': ['ciliary ganglion'], 'label': 'main ciliary ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002059', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': [], 'synonymLabels': ['mandibular ganglion'], 'label': 'submandibular ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002066', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002066', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002331', 'children': [], 'synonymLabels': [], 'label': 'umbilical vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002097', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008974', 'http://purl.obolibrary.org/obo/UBERON_0035549', 'http://purl.obolibrary.org/obo/UBERON_0002384', 'http://purl.obolibrary.org/obo/UBERON_0001961', 'http://purl.obolibrary.org/obo/UBERON_0000423', 'http://purl.obolibrary.org/obo/UBERON_0002073', 'http://purl.obolibrary.org/obo/UBERON_0006134', 'http://purl.obolibrary.org/obo/UBERON_0007121', 'http://purl.obolibrary.org/obo/UBERON_0001821', 'http://purl.obolibrary.org/obo/UBERON_0000055'], 'synonymLabels': ['vertebrate dermis'], 'label': 'dermis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002069', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002069', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001003', 'children': [], 'synonymLabels': ['epidermis stratum granulosum', 'granular layer of epidermis', 'stratum granulosum', 'stratum granulosum of epidermis'], 'label': 'stratum granulosum (sg)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002070', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002070', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010132', 'children': ['http://purl.org/sig/ont/fma/fma14782', 'http://purl.org/sig/ont/fma/fma14784'], 'synonymLabels': ['superior pancreatico-duodenal artery', 'superior pancreatoduodenal artery'], 'label': 'superior pancreaticoduodenal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002072', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002097', 'children': [], 'synonymLabels': ['hypoderm', 'vertebrate hypodermis', 'hypodermis'], 'label': 'subcutaneous'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002073': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002073', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002073', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['hair follicles'], 'label': 'hair follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002078': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002078', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.org/sig/ont/fma/fma76767', 'http://purl.obolibrary.org/obo/UBERON_0005438', 'http://purl.obolibrary.org/obo/UBERON_0001072', 'http://purl.obolibrary.org/obo/UBERON_0003379', 'http://purl.obolibrary.org/obo/UBERON_0003383', 'http://purl.org/sig/ont/fma/fma83531', 'http://purl.obolibrary.org/obo/UBERON_0002351', 'http://purl.obolibrary.org/obo/UBERON_0001585'], 'synonymLabels': ['right cardiac atrium', 'cardiac right atrium', 'heart right atrium', 'right atrium of heart'], 'label': 'right atrium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001982', 'http://purl.org/sig/ont/fma/fma49913', 'http://purl.org/sig/ont/fma/fma49916', 'http://purl.org/sig/ont/fma/fma83532', 'http://purl.org/sig/ont/fma/fma83539', 'http://purl.org/sig/ont/fma/fma4715', 'http://purl.obolibrary.org/obo/UBERON_0002016', 'http://purl.org/sig/ont/fma/fma49911', 'http://purl.org/sig/ont/fma/fma49914', 'http://purl.obolibrary.org/obo/UBERON_0002049', 'http://purl.obolibrary.org/obo/UBERON_0001979'], 'synonymLabels': ['cardiac left atrium', 'heart left atrium', 'left atrium of heart', 'left cardiac atrium', 'atrium sinistrum'], 'label': 'left atrium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002080', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002080', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.org/sig/ont/fma/fma7272', 'http://purl.obolibrary.org/obo/UBERON_0006567', 'http://purl.org/sig/ont/fma/fma9535', 'http://purl.obolibrary.org/obo/UBERON_0002333'], 'synonymLabels': ['right ventricle of heart', 'heart right ventricle', 'cardiac right ventricle'], 'label': 'right ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002084': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002084', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000947', 'http://purl.org/sig/ont/fma/fma3860', 'http://purl.org/sig/ont/fma/fma4708', 'http://purl.org/sig/ont/fma/fma3902', 'http://purl.obolibrary.org/obo/UBERON_0006566', 'http://purl.org/sig/ont/fma/fma3835', 'http://purl.org/sig/ont/fma/fma4712'], 'synonymLabels': ['cardiac left ventricle', 'left cardiac ventricle', 'left ventricle of heart', 'heart left ventricle'], 'label': 'left ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002088', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002088', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': [], 'synonymLabels': [], 'label': 'lateral thoracic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002089': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002089', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002089', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': [], 'synonymLabels': [], 'label': 'thoracodorsal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002091', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004288', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003460', 'http://purl.obolibrary.org/obo/UBERON_0005893'], 'synonymLabels': ['entire appendicular skeleton'], 'label': 'appendicular skeleton'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002094', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002094', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002353', 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-arteries'], 'synonymLabels': ['heart interventricular septum', 'heart ventricular septum', 'interventricular septum'], 'label': 'septum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002097', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002097', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002067', 'http://purl.obolibrary.org/obo/UBERON_0001003', 'http://purl.obolibrary.org/obo/UBERON_0002072'], 'synonymLabels': ['skin of body', 'entire skin', 'skin organ'], 'label': 'skin'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002106', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002106', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004641', 'http://purl.obolibrary.org/obo/UBERON_0001248', 'http://purl.obolibrary.org/obo/UBERON_1000023'], 'synonymLabels': [], 'label': 'spleen'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002107', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004647'], 'synonymLabels': [], 'label': 'liver'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002108', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002108', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002114', 'http://purl.obolibrary.org/obo/UBERON_0002116', 'http://purl.obolibrary.org/obo/UBERON_0002115', 'http://purl.org/sig/ont/fma/fma14966'], 'synonymLabels': ['small bowel'], 'label': 'small intestine'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002113': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002113', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001225', 'http://purl.obolibrary.org/obo/UBERON_0002015', 'http://purl.obolibrary.org/obo/UBERON_0004538', 'http://purl.obolibrary.org/obo/UBERON_0001285', 'http://purl.obolibrary.org/obo/UBERON_0004100', 'http://purl.obolibrary.org/obo/UBERON_0000362', 'http://purl.obolibrary.org/obo/UBERON_0004539', 'http://purl.obolibrary.org/obo/UBERON_0006544'], 'synonymLabels': [], 'label': 'kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002114', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002108', 'children': ['http://purl.org/sig/ont/fma/fma14930', 'http://purl.org/sig/ont/fma/fma14928', 'http://purl.obolibrary.org/obo/UBERON_0013644', 'http://purl.obolibrary.org/obo/UBERON_8410000', 'http://purl.org/sig/ont/fma/fma14929', 'http://purl.org/sig/ont/fma/fma7206'], 'synonymLabels': [], 'label': 'duodenum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002115': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002115', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002115', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002108', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000399', 'http://purl.obolibrary.org/obo/UBERON_0012377', 'http://purl.obolibrary.org/obo/UBERON_0003337', 'http://purl.obolibrary.org/obo/UBERON_0003333'], 'synonymLabels': [], 'label': 'jejunum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002116': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002116', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002116', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002108', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000331', 'https://purl.org/ccf/ASCTB-TEMP_muscularis-externa', 'https://purl.org/ccf/ASCTB-TEMP_serosa', 'http://purl.obolibrary.org/obo/UBERON_0004946'], 'synonymLabels': [], 'label': 'ileum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002122': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002122', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002122', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002370', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004791'], 'synonymLabels': ['thymus capsule', 'thymic capsule'], 'label': 'capsule of thymus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002123': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002123', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002123', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002125', 'children': [], 'synonymLabels': ['thymic cortex', 'thymus cortex'], 'label': 'cortex of thymus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002124': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002124', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002124', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002125', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001591'], 'synonymLabels': ['medulla of thymus gland', 'thymus gland medulla', 'thymus medulla'], 'label': 'medulla of thymus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002125', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002125', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005483', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002123', 'http://purl.obolibrary.org/obo/UBERON_0003988', 'http://purl.obolibrary.org/obo/UBERON_0002124', 'http://purl.obolibrary.org/obo/UBERON_0003846'], 'synonymLabels': ['lobule of thymus', 'thymic lobule'], 'label': 'thymus lobule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002127': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002127', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002127', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0024151', 'children': [], 'synonymLabels': ['oliva', 'inferior olivary nuclear complex', 'inferior olivary complex'], 'label': 'inferior olive'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002129': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002129', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002129', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002037', 'children': [], 'synonymLabels': ['cortex of cerebellar hemisphere'], 'label': 'cerebellar cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002130': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002130', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002130', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002037', 'children': [], 'synonymLabels': ['cerebellar nuclear complex', 'central nuclei', 'cerebellar nuclei', 'deep cerebellar nuclear complex', 'deep cerebellar nuclei', 'intracerebellar nuclei', 'intrinsic nuclei of cerebellum', 'nuclei cerebelli', 'roof nuclei-2'], 'label': 'cerebellar deep nuclei'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002134': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002134', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002134', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000946', 'children': [], 'synonymLabels': ['right atrioventricular valve', 'valva atrioventricularis dextra'], 'label': 'tricuspid valve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002135': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002135', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002135', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000946', 'children': [], 'synonymLabels': ['left atrioventricular valve', 'valva atrioventricularis sinistra'], 'label': 'mitral valve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002137': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002137', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002137', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000946', 'children': [], 'synonymLabels': [], 'label': 'aortic valve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002146': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002146', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002146', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000946', 'children': [], 'synonymLabels': ['pulmonic valve'], 'label': 'pulmonary valve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002150': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002150', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002150', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019258', 'children': [], 'synonymLabels': ['brachium conjunctivum'], 'label': 'superior cerebellar peduncle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002151': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002151', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002151', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000988', 'children': [], 'synonymLabels': ['pontine gray', 'pontine nuclear complex', 'pontine nuclear group', 'pontine nuclei', 'pontine nucleus'], 'label': 'basilar part of pons (pontine nuclei)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002152': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002152', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002152', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019258', 'children': [], 'synonymLabels': ['brachium pontis'], 'label': 'middle cerebellar peduncle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002163': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002163', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002163', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019258', 'children': [], 'synonymLabels': ['corpus restiforme', 'restiform body'], 'label': 'inferior cerebellar peduncle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002173', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002173', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002188', 'children': ['http://purl.obolibrary.org/obo/UBERON_0016405'], 'synonymLabels': ['alveolar duct', 'respiratory alveolar duct', 'ductus alveolaris'], 'label': 'pulmonary alveolar duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002182', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002182', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002340', 'http://purl.obolibrary.org/obo/UBERON_0003590', 'http://purl.obolibrary.org/obo/UBERON_0004241'], 'synonymLabels': ['bronchus principalis', 'mainstem bronchus', 'major bronchus', 'primary bronchus', 'principal bronchus', 'main bronchus'], 'label': 'extrapulmonary bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002183', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007196', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004884', 'http://purl.obolibrary.org/obo/UBERON_0004242', 'http://purl.obolibrary.org/obo/UBERON_8410043', 'http://purl.obolibrary.org/obo/UBERON_0001956', 'http://purl.obolibrary.org/obo/UBERON_0002339', 'http://purl.obolibrary.org/obo/UBERON_0003591'], 'synonymLabels': ['bronchi lobaris', 'lobar bronchus'], 'label': 'secondary bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002184', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002184', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007196', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002341'], 'synonymLabels': ['segmental bronchus'], 'label': 'tertiary bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002185': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002185', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002185', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007196', 'children': [], 'synonymLabels': ['bronchi', 'bronchial trunk'], 'label': 'bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002187': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002187', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002187', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010369', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008874', 'http://purl.obolibrary.org/obo/UBERON_0004516', 'http://purl.obolibrary.org/obo/UBERON_0001958'], 'synonymLabels': ['bronchiolus terminalis', 'terminal bronchiole'], 'label': 'terminal/ transitional bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002188', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008874', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002299', 'http://purl.obolibrary.org/obo/UBERON_0001955', 'http://purl.obolibrary.org/obo/UBERON_0002173', 'http://purl.obolibrary.org/obo/UBERON_0004517'], 'synonymLabels': ['bronchiolus respiratorii', 'bronchiolus respiratorius'], 'label': 'respiratory bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002189', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002189', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001225', 'children': [], 'synonymLabels': ['kidney outer cortex', 'outer renal cortex'], 'label': 'outer cortex of kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002190': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002190', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002190', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001245', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001367'], 'synonymLabels': ['subcutaneous adipose tissue', 'fatty layer of subcutaneous tissue', 'hypodermis fat layer', 'panniculus adiposus (tela subcutanea)', 'panniculus adiposus telae subcutaneae', 'subcutaneous fat layer'], 'label': 'subcutaneous'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002194': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002194', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002194', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000029', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002195'], 'synonymLabels': ['capsula nodi lymphoidei', 'lymph node capsule', 'capsule of lymph node'], 'label': 'capsule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002195', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002195', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002194', 'children': [], 'synonymLabels': ['lymph node trabecula', 'lymph node trabeculae', 'lymph node trabeculum', 'trabeculae of lymph node', 'trabecula of lymph node'], 'label': 'trabeculae'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002199', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002199', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002416', 'children': [], 'synonymLabels': ['dermis plus epidermis plus hypodermis', 'integumentum commune', 'skin and subcutaneous tissue', 'skin plus hypodermis', 'the integument'], 'label': 'integument'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002202', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002202', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003126', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005203'], 'synonymLabels': ['submucosa of windpipe', 'trachea submucosa', 'tracheal submucosa', 'windpipe submucosa'], 'label': 'submucosa of trachea'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002203', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002203', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001776'], 'synonymLabels': ['eye vascular network', 'ocular blood vessel', 'ocular vasculature', 'vascular network of eye'], 'label': 'vasculature of eye'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002205': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002205', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002205', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': ['manubrium sterni', 'sternal manubrium', 'sternal rostrum', 'sternum rostrum'], 'label': 'manubrium of sternum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002206': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002206', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002206', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001898', 'children': [], 'synonymLabels': ['corpus mamillare', 'mammillary body'], 'label': 'mammillary nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002211': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002211', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002211', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000010', 'children': ['http://purl.org/sig/ont/fma/fma65244', 'http://purl.org/sig/ont/fma/fma65243', 'http://purl.obolibrary.org/obo/UBERON_0009623'], 'synonymLabels': ['initial segment of nerve', 'radix nervi'], 'label': 'nerve root'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002240', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002240', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002726', 'http://purl.obolibrary.org/obo/UBERON_0002792', 'http://purl.obolibrary.org/obo/UBERON_0005843', 'http://purl.obolibrary.org/obo/UBERON_0003038'], 'synonymLabels': [], 'label': 'spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002249', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002249', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': [], 'synonymLabels': [], 'label': 'median artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002250', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'parent': 'http://purl.org/sig/ont/fma/fma0323777', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001537', 'http://purl.org/sig/ont/fma/fma43888', 'http://purl.org/sig/ont/fma/fma22585', 'https://purl.org/ccf/ASCTB-TEMP_lateral-sural-artery', 'http://purl.org/sig/ont/fma/fma43889', 'http://purl.org/sig/ont/fma/fma22584', 'https://purl.org/ccf/ASCTB-TEMP_medial-sural-artery', 'http://purl.org/sig/ont/fma/fma22536', 'http://purl.org/sig/ont/fma/fma66421'], 'synonymLabels': [], 'label': 'popliteal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002260': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002260', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009623', 'children': ['http://purl.org/sig/ont/fma/fma12955', 'http://purl.org/sig/ont/fma/fma12903', 'http://purl.org/sig/ont/fma/fma12906', 'http://purl.org/sig/ont/fma/fma12952', 'http://purl.org/sig/ont/fma/fma12960', 'http://purl.org/sig/ont/fma/fma12965', 'http://purl.org/sig/ont/fma/fma12900', 'http://purl.org/sig/ont/fma/fma12948', 'http://purl.org/sig/ont/fma/fma12956', 'http://purl.org/sig/ont/fma/fma12961', 'http://purl.org/sig/ont/fma/fma7643', 'http://purl.org/sig/ont/fma/fma12951', 'http://purl.org/sig/ont/fma/fma12959', 'http://purl.org/sig/ont/fma/fma12964', 'http://purl.org/sig/ont/fma/fma12899', 'http://purl.org/sig/ont/fma/fma12904', 'http://purl.org/sig/ont/fma/fma12949', 'http://purl.org/sig/ont/fma/fma12957', 'http://purl.org/sig/ont/fma/fma12962', 'http://purl.org/sig/ont/fma/fma12897', 'http://purl.org/sig/ont/fma/fma12954', 'http://purl.org/sig/ont/fma/fma12902', 'http://purl.org/sig/ont/fma/fma12953', 'http://purl.org/sig/ont/fma/fma12901', 'http://purl.org/sig/ont/fma/fma12905', 'http://purl.org/sig/ont/fma/fma12950', 'http://purl.org/sig/ont/fma/fma12958', 'http://purl.org/sig/ont/fma/fma12963', 'http://purl.org/sig/ont/fma/fma12898', 'http://purl.org/sig/ont/fma/fma12907'], 'synonymLabels': ['anterior spinal root', 'ventral spinal root'], 'label': 'ventral root of spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002262': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002262', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002262', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003964', 'children': [], 'synonymLabels': ['coeliac ganglion'], 'label': 'celiac ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002264': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002264', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002264', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': [], 'synonymLabels': ['bulbus olfactorius'], 'label': 'olfactory bulb'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002265': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002265', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002265', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': [], 'label': 'olfactory tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002270': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002270', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002270', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['arteria hyaloidea'], 'label': 'hyaloid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002276', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002276', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006761'], 'synonymLabels': ['limbus lamina spiralis', 'limbus laminae spiralis', 'limbus laminae spiralis osseae', 'spiral limbus lamina'], 'label': 'lamina of spiral limbus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002285', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002651', 'https://purl.org/ccf/ASCTB-TEMP_atrium-of-lateral-ventricle', 'http://purl.obolibrary.org/obo/UBERON_0002655', 'http://purl.obolibrary.org/obo/UBERON_0006091', 'http://purl.obolibrary.org/obo/UBERON_0004672', 'http://purl.obolibrary.org/obo/UBERON_0002286'], 'synonymLabels': ['lateral ventricle', 'lateral ventricles', 'telencephalic ventricle', 'telencephalon lateral ventricle'], 'label': 'ventricle of forebrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002286': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002286', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002286', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'children': [], 'synonymLabels': ['3rd ventricle', 'ventriculus diencephali'], 'label': 'third ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002289': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002289', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002289', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001891', 'children': [], 'synonymLabels': ['midbrain cerebral aqueduct', 'aqueduct (Sylvius)', 'aqueduct of midbrain', 'aqueduct of Sylvius', 'aqueductus mesencephali', 'cerebral aquaduct', 'cerebral aqueduct', 'cerebral aqueduct of Sylvius', 'medial tectal ventricle', 'mesencephalic duct', 'mesencephalic ventricle', 'midbrain ventricle', 'Sylvian aqueduct', 'tectal ventricle'], 'label': 'ventricle of midbrain (cerebral aqueduct)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002291', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004086', 'children': [], 'synonymLabels': ['central canal of spinal cord', 'canalis centralis', 'central canal', 'spinal cord central canal', 'ventricle of spinal cord'], 'label': 'central canal of medulla oblongata'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002299': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002299', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002299', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002188', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008870'], 'synonymLabels': ['alveolus pulmonis', 'lung alveolus', 'pulmonary alveolus', 'respiratory alveolus', 'alveolus of lung'], 'label': 'alveolus of lung on respiratory bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003517', 'children': [], 'synonymLabels': ['complexus juxtaglomerularis', 'juxtaglomerular complex'], 'label': 'juxtaglomerular apparatus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002319', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002319', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005215', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002320'], 'synonymLabels': ['mesangium'], 'label': 'proximal tubule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002320', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002319', 'children': [], 'synonymLabels': [], 'label': 'glomerular mesangium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002324', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'children': ['http://purl.org/sig/ont/fma/fma71302', 'https://purl.org/ccf/ASCTB-TEMP_intermediate-back-muscle', 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'https://purl.org/ccf/ASCTB-TEMP_spinotransversales-muscle', 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'http://purl.obolibrary.org/obo/UBERON_0010990'], 'synonymLabels': ['back muscle organ', 'muscle organ of back', 'muscle of back'], 'label': 'back muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002331', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001987', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000305', 'http://purl.obolibrary.org/obo/UBERON_0003422', 'http://purl.obolibrary.org/obo/UBERON_0001310', 'http://purl.obolibrary.org/obo/UBERON_0002066'], 'synonymLabels': ['chorda umbilicalis', 'funiculus umbilicalis'], 'label': 'umbilical cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002333': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002333', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002333', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002080', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001652', 'http://purl.obolibrary.org/obo/UBERON_0001651'], 'synonymLabels': ['pulmonary artery (trunk)', 'trunk of pulmonary arterial tree'], 'label': 'pulmonary trunk'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002335': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002335', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002335', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001291', 'children': [], 'synonymLabels': [], 'label': 'macula densa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002336': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002336', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002336', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': ['corpus callosum'], 'label': 'corpus callosum (midline portion)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002337', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002337', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'children': [], 'synonymLabels': ['endometrium stroma', 'stroma of endometrium'], 'label': 'endometrial stroma'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002339': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002339', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002339', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'children': [], 'synonymLabels': ['epithelial tissue of lobar bronchus', 'epithelial tissue of secondary bronchus', 'epithelium of secondary bronchus', 'lobar bronchus epithelial tissue', 'lobar bronchus epithelium', 'secondary bronchus epithelial tissue', 'secondary bronchus epithelium', 'epithelium of lobar bronchus'], 'label': 'lobar bronchial epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002340', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002340', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002182', 'children': [], 'synonymLabels': ['bronchus principalis epithelial tissue', 'bronchus principalis epithelium', 'epithelial tissue of bronchus principalis', 'epithelial tissue of main bronchus', 'epithelial tissue of primary bronchus', 'epithelial tissue of principal bronchus', 'epithelium of bronchus principalis', 'epithelium of primary bronchus', 'epithelium of principal bronchus', 'main bronchial epithelium', 'main bronchus epithelial tissue', 'main bronchus epithelium', 'primary bronchus epithelial tissue', 'primary bronchus epithelium', 'principal bronchus epithelial tissue', 'principal bronchus epithelium'], 'label': 'epithelium of main bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002341': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002341', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002341', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002184', 'children': [], 'synonymLabels': ['epithelium of segmental bronchus', 'epithelial tissue of segmental bronchus', 'epithelial tissue of tertiary bronchus', 'epithelium of tertiary bronchus', 'segmental bronchus epithelial tissue', 'segmental bronchus epithelium', 'tertiary bronchus epithelial tissue', 'tertiary bronchus epithelium'], 'label': 'segmental bronchial epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002345': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002345', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001514', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001516', 'http://purl.obolibrary.org/obo/UBERON_0002040', 'http://purl.obolibrary.org/obo/UBERON_0035539', 'http://purl.org/sig/ont/fma/fma4147', 'http://purl.org/sig/ont/fma/fma4170', 'http://purl.org/sig/ont/fma/fma4567', 'http://purl.org/sig/ont/fma/fma4590', 'http://purl.org/sig/ont/fma/fma4406', 'http://purl.org/sig/ont/fma/fma4429', 'http://purl.org/sig/ont/fma/fma4452', 'http://purl.org/sig/ont/fma/fma4475', 'http://purl.org/sig/ont/fma/fma4498', 'http://purl.org/sig/ont/fma/fma4521', 'http://purl.org/sig/ont/fma/fma4544', 'http://purl.org/sig/ont/fma/fma4173', 'http://purl.org/sig/ont/fma/fma4654', 'http://purl.org/sig/ont/fma/fma69329', 'http://purl.org/sig/ont/fma/fma4176', 'http://purl.org/sig/ont/fma/fma31933', 'http://purl.org/sig/ont/fma/fma4165', 'http://purl.org/sig/ont/fma/fma4360', 'http://purl.org/sig/ont/fma/fma4383', 'http://purl.org/sig/ont/fma/fma4199', 'http://purl.org/sig/ont/fma/fma4222', 'http://purl.org/sig/ont/fma/fma4245', 'http://purl.org/sig/ont/fma/fma4268', 'http://purl.org/sig/ont/fma/fma4291', 'http://purl.org/sig/ont/fma/fma4314', 'http://purl.org/sig/ont/fma/fma4337', 'http://purl.org/sig/ont/fma/fma4168', 'http://purl.org/sig/ont/fma/fma4634', 'http://purl.obolibrary.org/obo/UBERON_0001561', 'http://purl.org/sig/ont/fma/fma4146', 'http://purl.obolibrary.org/obo/UBERON_0013133'], 'synonymLabels': [], 'label': 'descending thoracic aorta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002347': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002347', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001130', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004626', 'http://purl.obolibrary.org/obo/UBERON_0004634', 'http://purl.obolibrary.org/obo/UBERON_0004635', 'http://purl.obolibrary.org/obo/UBERON_0004636', 'http://purl.obolibrary.org/obo/UBERON_0004627', 'http://purl.obolibrary.org/obo/UBERON_0004628', 'http://purl.obolibrary.org/obo/UBERON_0004629', 'http://purl.obolibrary.org/obo/UBERON_0004630', 'http://purl.obolibrary.org/obo/UBERON_0004631', 'http://purl.obolibrary.org/obo/UBERON_0004632', 'http://purl.obolibrary.org/obo/UBERON_0011050', 'http://purl.obolibrary.org/obo/UBERON_0004633'], 'synonymLabels': ['dorsal vertebra', 'thorax vertebra', 'vertebra of thorax', 'vertebra thoracica'], 'label': 'thoracic vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002348': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002348', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002348', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': [], 'synonymLabels': ['heart epicardium', 'visceral serous pericardium of heart', 'visceral serous pericardium proper'], 'label': 'epicardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002351': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002351', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002351', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': [], 'synonymLabels': ['cardiac pacemaker', \"Koch's node\", 'node of Keith-Flack', 'nodus sinuatrialis', 'SA nodal muscle tissue', 'SA node', 'sinu-atrial node', 'sinuatrial nodal muscle tissue', 'sinuatrial node', 'sinus node', 'sinus node of Keith and Flack'], 'label': 'sinoatrial node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002352': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002352', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002352', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011820', 'children': [], 'synonymLabels': ['Aschoff-Tawara node', 'atrioventricular nodal muscle tissue', 'AV nodal muscle tissue', 'AV node', 'node of Tawara', 'nodus atrioventricularis'], 'label': 'atrioventricular node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002353': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002353', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002353', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002094', 'children': [], 'synonymLabels': ['atrio-ventricular bundle', 'atrioventricular bundle muscle tissue', 'atrioventricular fasciculus', 'AV bundle', 'AVB', 'bundle of His', 'fasciculus atrioventricularis', 'His bundle'], 'label': 'atrioventricular bundle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002367': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002367', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002367', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004536', 'http://purl.obolibrary.org/obo/UBERON_0000428', 'http://purl.obolibrary.org/obo/UBERON_0004184', 'http://purl.obolibrary.org/obo/UBERON_0001335', 'http://purl.obolibrary.org/obo/UBERON_0007798'], 'synonymLabels': ['male prostate', 'prostate'], 'label': 'prostate gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002370': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002370', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002370', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002122', 'http://purl.obolibrary.org/obo/UBERON_0005483'], 'synonymLabels': ['thymus', 'thymus organ', 'thymus gland'], 'label': 'thoracic thymus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002371': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002371', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002371', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002390', 'children': [], 'synonymLabels': ['medulla ossea', 'medulla ossium'], 'label': 'bone marrow'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002373': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002373', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.org/sig/ont/fma/fma55221', 'http://purl.obolibrary.org/obo/UBERON_0010423', 'http://purl.obolibrary.org/obo/UBERON_0005207', 'http://purl.obolibrary.org/obo/UBERON_0012181', 'http://purl.obolibrary.org/obo/UBERON_0013696', 'https://purl.org/ccf/ASCTB-TEMP_tonsil-follicle'], 'synonymLabels': ['faucial tonsil'], 'label': 'palatine tonsil'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002376': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002376', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'children': ['https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', 'http://purl.obolibrary.org/obo/UBERON_0001601', 'http://purl.obolibrary.org/obo/UBERON_0001575', 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-eye-muscle', 'http://purl.obolibrary.org/obo/UBERON_0001576', 'http://purl.obolibrary.org/obo/UBERON_0003681', 'https://purl.org/ccf/ASCTB-TEMP_middle-ear-muscle', 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'http://purl.obolibrary.org/obo/UBERON_0003682'], 'synonymLabels': ['cephalic muscle', 'cephalic musculature', 'head muscle', 'head muscle organ', 'muscle of head', 'muscle organ of adult head', 'muscle organ of head', 'musculus caput'], 'label': 'cranial muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002377': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002377', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'parent': '', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle', 'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle', 'http://purl.obolibrary.org/obo/UBERON_0008523', 'http://purl.obolibrary.org/obo/UBERON_0001568', 'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle', 'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle', 'http://purl.obolibrary.org/obo/UBERON_0001128', 'http://purl.org/sig/ont/fma/fma71439', 'http://purl.obolibrary.org/obo/UBERON_0008571'], 'synonymLabels': ['muscle organ of neck', 'muscle organ of neck (volume)', 'neck (volume) muscle organ', 'neck muscle organ', 'muscle of neck'], 'label': 'neck muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002378': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002378', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002378', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002461', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'http://purl.obolibrary.org/obo/UBERON_0002379', 'https://purl.org/ccf/ASCTB-TEMP_spermatic-cord-muscle'], 'synonymLabels': ['abdomen muscle organ', 'abdominal muscle', 'abdominal wall muscle', 'muscle organ of abdomen', 'muscle of abdomen'], 'label': 'abdomen muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002379', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002378', 'children': ['http://purl.obolibrary.org/obo/UBERON_0011389', 'http://purl.org/sig/ont/fma/fma30438', 'http://purl.org/sig/ont/fma/fma19732', 'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle', 'http://purl.obolibrary.org/obo/UBERON_0001339', 'https://purl.org/ccf/ASCTB-TEMP_sphincter-urethrae-muscle', 'http://purl.org/sig/ont/fma/fma30439', 'http://purl.org/sig/ont/fma/fma19731'], 'synonymLabels': ['muscle of perineum', 'muscle organ of perineal region', 'muscle organ of perineum', 'perineal region muscle organ', 'perineum muscle organ'], 'label': 'perineal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002380': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002380', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002380', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'children': ['http://purl.org/sig/ont/fma/fma32555', 'http://purl.org/sig/ont/fma/fma32557', 'http://purl.org/sig/ont/fma/fma32556'], 'synonymLabels': ['trapezius'], 'label': 'trapezius muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002381': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002381', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002381', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001495', 'children': ['http://purl.org/sig/ont/fma/fma34699', 'https://purl.org/ccf/ASCTB-TEMP_clavicular-head-of-pectoralis-major-muscle', 'https://purl.org/ccf/ASCTB-TEMP_sternocostal-head-of-pectoralis-major-muscle'], 'synonymLabels': ['pectoralis major muscle structure', 'pectoralis major'], 'label': 'pectoralis major muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002382': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002382', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002382', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002461', 'children': [], 'synonymLabels': ['m. rectus abdominis', 'musculus rectus abdominis', 'rectus abdominis'], 'label': 'rectus abdominis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002383', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002383', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['supraspinatus', 'musculus supraspinatus'], 'label': 'supraspinatus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002384': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002384', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002384', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['textus connectivus', 'portion of connective tissue', 'fibroconnective tissue'], 'label': 'connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002390', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002390', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000178', 'http://purl.obolibrary.org/obo/UBERON_0002371'], 'synonymLabels': ['haematological system', 'haemopoietic system', 'organa haemopoietica'], 'label': 'hematopoietic system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002395': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002395', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002395', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma33635', 'http://purl.org/sig/ont/fma/fma33651', 'http://purl.obolibrary.org/obo/UBERON_0015180', 'http://purl.org/sig/ont/fma/fma33650', 'http://purl.org/sig/ont/fma/fma33638'], 'synonymLabels': [], 'label': 'talus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002396', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002396', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': ['http://purl.org/sig/ont/fma/fma57674', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-nasopalatine-nerve-of-vomer'], 'synonymLabels': ['vomer bone'], 'label': 'vomer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002397', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': ['http://purl.org/sig/ont/fma/fma75360', 'http://purl.obolibrary.org/obo/UBERON_0004527', 'http://purl.obolibrary.org/obo/UBERON_0035139', 'http://purl.obolibrary.org/obo/UBERON_0013767', 'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-canal-of-maxilla', 'https://purl.org/ccf/ASCTB-TEMP_incisive-foramen-of-maxilla', 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-canal-of-maxilla', 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-foramen-of-maxilla', 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-groove-of-maxilla', 'https://purl.org/ccf/ASCTB-TEMP_intermaxillary-suture-of-maxilla', 'https://purl.org/ccf/ASCTB-TEMP_maxillary-sinus-of-maxilla', 'http://purl.org/sig/ont/fma/fma57703', 'https://purl.org/ccf/ASCTB-TEMP_nasolacrimal-canal-of-maxilla', 'http://purl.obolibrary.org/obo/UBERON_0005871', 'http://purl.obolibrary.org/obo/UBERON_0016477'], 'synonymLabels': [], 'label': 'maxilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002401', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002401', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002048', 'children': [], 'synonymLabels': ['pleura visceralis (pulmonalis)', 'pulmonary visceral pleura', 'pleura pulmonalis', 'pleura visceralis'], 'label': 'visceral pleura'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002403': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002403', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002403', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'children': [], 'synonymLabels': ['intercostales internus'], 'label': 'internal intercostal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002405': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002405', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002405', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': [], 'synonymLabels': ['immune system of respiratory tract'], 'label': 'immune system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002407': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002407', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002407', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015410', 'children': [], 'synonymLabels': [], 'label': 'pericardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002413': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002413', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001130', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001092', 'http://purl.obolibrary.org/obo/UBERON_0001093', 'http://purl.obolibrary.org/obo/UBERON_0004612', 'http://purl.obolibrary.org/obo/UBERON_0004613', 'http://purl.obolibrary.org/obo/UBERON_0004614', 'http://purl.obolibrary.org/obo/UBERON_0004615', 'http://purl.obolibrary.org/obo/UBERON_0004616'], 'synonymLabels': ['cervical vertebrae'], 'label': 'cervical vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002414', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002414', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001130', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004617', 'http://purl.obolibrary.org/obo/UBERON_0004618', 'http://purl.obolibrary.org/obo/UBERON_0004619', 'http://purl.obolibrary.org/obo/UBERON_0004620', 'http://purl.obolibrary.org/obo/UBERON_0004621'], 'synonymLabels': [], 'label': 'lumbar vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002416': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002416', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002416', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002199'], 'synonymLabels': ['integumentary system'], 'label': 'integumental system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002421': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002421', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002421', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': ['https://purl.org/ccf/ASCTB-TEMP_body-of-hippocampus', 'https://purl.org/ccf/ASCTB-TEMP_head-of-hippocampus', 'http://purl.obolibrary.org/obo/UBERON_0023787'], 'synonymLabels': ['hippocampal formation', 'hippocampus (Crosby)'], 'label': 'hippocampal gyrus (formation)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002422': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002422', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002422', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004086', 'children': [], 'synonymLabels': ['ventricle IV'], 'label': 'fourth ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002426': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002426', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002426', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001495', 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle'], 'synonymLabels': ['anterior thoracic region muscle organ', 'anterolateral part of thorax muscle organ', 'chest muscle organ', 'front of thorax muscle organ', 'muscle of thorax', 'muscle organ of anterior thoracic region', 'muscle organ of anterolateral part of thorax', 'muscle organ of chest', 'muscle organ of front of thorax', 'musculus thoracicus', 'thoracic muscle'], 'label': 'chest muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002439', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002439', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000429', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410058', 'http://purl.obolibrary.org/obo/UBERON_8410063'], 'synonymLabels': ['plexus nervosus submucosus', 'Auberbach plexus', \"Auberbach's plexus\", 'Auberbachs plexus', \"Auerbach's plexus\", 'myenteric plexus', 'plexus submucosus', \"Remak's plexus\", 'myenteric plexus of auerbach'], 'label': 'myenteric nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002441': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002441', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002441', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001991', 'children': [], 'synonymLabels': ['cervicothoracic sympathetic ganglion', 'ganglion cervicothoracicum', 'ganglion stellatum', 'stellate ganglion'], 'label': 'cervicothoracic ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002444': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002444', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002444', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000965', 'children': [], 'synonymLabels': ['lens fiber', 'fibrae lentis', 'lens fibers set', 'lens fibres'], 'label': 'lens fibers'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002445': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002445', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002445', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': [], 'synonymLabels': ['cuneiform bone of hand', 'cuneiform bone of manus', 'os triquetrum', 'os ulnare', 'triangular bone', 'triquetral', 'triquetral bone'], 'label': 'ulnare'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002446': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002446', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002446', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', 'children': [], 'synonymLabels': [], 'label': 'patella'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002451', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002451', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012276', 'http://purl.obolibrary.org/obo/UBERON_0011949'], 'synonymLabels': ['endometrial mucuous gland', 'endometrium gland', 'glandulae uterinae', 'uterine gland'], 'label': 'endometrial gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002456': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002456', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'children': ['http://purl.org/sig/ont/fma/fma10641', 'http://purl.org/sig/ont/fma/fma10652', 'http://purl.org/sig/ont/fma/fma10653', 'http://purl.org/sig/ont/fma/fma10654', 'http://purl.org/sig/ont/fma/fma10655', 'http://purl.org/sig/ont/fma/fma10656', 'http://purl.org/sig/ont/fma/fma10657', 'http://purl.obolibrary.org/obo/UBERON_0006632', 'http://purl.org/sig/ont/fma/fma3964', 'http://purl.org/sig/ont/fma/fma70370', 'http://purl.obolibrary.org/obo/UBERON_0007153', 'http://purl.obolibrary.org/obo/UBERON_0018243'], 'synonymLabels': ['internal thoracic mammary artery', 'internal mammary artery'], 'label': 'internal thoracic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002459': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002459', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002459', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'children': [], 'synonymLabels': ['inferior palpebral veins', 'inferior palpebral veins set', 'vein of inferior eyelid'], 'label': 'inferior palpebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002460', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002460', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['vesical veins set', 'venae vesicales', 'vesical veins'], 'label': 'vesical vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002461': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002461', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002461', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002378', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005442', 'https://purl.org/ccf/ASCTB-TEMP_internal-abdominal-oblique-muscle', 'http://purl.obolibrary.org/obo/UBERON_0011016', 'http://purl.obolibrary.org/obo/UBERON_0002382', 'http://purl.obolibrary.org/obo/UBERON_0001221'], 'synonymLabels': ['muscle of anterior abdominal wall', 'ventral abdominal wall muscle'], 'label': 'anterior abdominal wall muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002475': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002475', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002475', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001267', 'children': [], 'synonymLabels': [], 'label': 'saphenous nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002476': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002476', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002476', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010011', 'children': [], 'synonymLabels': ['external globus pallidus', 'external pallidum', 'external part of globus pallidus', 'globus pallidus extermal segment', 'globus pallidus external segment', 'globus pallidus externus', 'globus pallidus lateralis', 'globus pallidus, lateral segment', 'lateral pallidal segment', 'lateral pallidum', 'lateral part of globus pallidus', 'lateral segment of globus pallidus', 'pallidus II', 'pars lateralis globi pallidi medialis', 'lateral globus pallidus'], 'label': 'globus pallidus, external'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002477', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010011', 'children': [], 'synonymLabels': ['entopeduncular nucleus (monakow)', 'globus pallidus interna', 'globus pallidus internal segment', 'globus pallidus internus', 'globus pallidus medial segment', 'globus pallidus medialis', 'globus pallidus, medial segment', 'internal globus pallidus', 'internal pallidum', 'internal part of globus pallidus', 'medial pallidal segment', 'medial part of globus pallidus', 'medial segment of globus pallidus', 'mesial pallidum', 'pallidus I', 'pars medialis globi pallidi', 'medial globus pallidus'], 'label': 'globus pallidus, internal'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002493': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002493', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002493', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012332', 'children': [], 'synonymLabels': [], 'label': 'uterine artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002505': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002505', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002505', 'parent': 'http://purl.org/sig/ont/fma/fma52242', 'children': [], 'synonymLabels': [], 'label': 'spiral modiolar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002506': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002506', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002506', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001769', 'children': [], 'synonymLabels': ['epithelial tissue of iris', 'epithelium of iris', 'epithelium pigmentosum (iris)', 'epithelium pigmentosum iridis', 'iris epithelial tissue', 'pigmented epithelium of iris'], 'label': 'iris epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002508': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002508', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002508', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': ['celiac axis lymph node', 'celiac node', 'coeliac axis lymph node', 'coeliac node', 'nodus lymphaticus coeliacus', 'terminal ventral aortic node'], 'label': 'celiac lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002509': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002509', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002509', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000029', 'children': [], 'synonymLabels': ['mesenteric node'], 'label': 'mesenteric lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002512': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002512', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002512', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': ['https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-lutein-layer', 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-theca-layer'], 'synonymLabels': ['corpora lutea', 'corpus luteum of ovary', 'ovarian corpus luteum'], 'label': 'corpus luteum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002564': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002564', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002564', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': [], 'label': 'lateral orbital gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002570': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002570', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002570', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': [], 'label': 'medial orbital gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002576': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002576', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002576', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': [], 'synonymLabels': ['polus temporalis'], 'label': 'temporal pole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002581': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002581', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002581', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'children': [], 'synonymLabels': ['gyrus postcentralis', 'postcentral convolution', 'posterior central gyrus', 'postrolandic gyrus'], 'label': 'postcentral gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002590': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002590', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002590', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': [], 'synonymLabels': ['(pre-)piriform cortex', 'gyrus olfactorius lateralis', 'lateral olfactory gyrus', 'piriform cortex (price)', 'piriform olfactory cortex', 'prepiriform cortex', 'prepyriform cortex', 'pyriform area', 'prepyriform area'], 'label': 'prepiriform region'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002593': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002593', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002593', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['operculum orbitale', 'pars orbitalis of frontal operculum (Ono)'], 'label': 'orbital operculum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002600': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002600', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002967', 'http://purl.obolibrary.org/obo/UBERON_0002738', 'http://purl.obolibrary.org/obo/UBERON_0002421', 'http://purl.obolibrary.org/obo/UBERON_0002264', 'http://purl.obolibrary.org/obo/UBERON_0002973', 'http://purl.obolibrary.org/obo/UBERON_0002603', 'http://purl.obolibrary.org/obo/UBERON_0002590', 'http://purl.obolibrary.org/obo/UBERON_0003020'], 'synonymLabels': ['fornicate gyrus', 'grande lobe limbique of Broca', 'limbic lobe (carpenter)'], 'label': 'limbic lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002603': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002603', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002603', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': [], 'synonymLabels': ['precommissural hippocampus', 'subcallosal gyrus'], 'label': 'paraterminal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002623', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002623', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016554', 'children': [], 'synonymLabels': ['peduncle of midbrain', 'pedunculus cerebri'], 'label': 'cerebral peduncle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002624': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002624', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002624', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002998', 'children': [], 'synonymLabels': ['gyrus frontalis inferior, pars orbitalis', 'pars orbitalis gyri frontalis inferioris', 'orbital part of inferior frontal gyrus'], 'label': 'inferior frontal gyrus, orbital part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002629': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002629', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002629', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002998', 'children': [], 'synonymLabels': ['gyrus frontalis inferior, pars triangularis', 'pars triangularis', 'pars triangularis gyri frontalis inferioris', 'pars triangularis of frontal operculum (Ono)', 'triangular part of inferior frontal gyrus'], 'label': 'inferior frontal gyrus, triangular part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002637': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002637', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002637', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['nucleus lateropolaris', 'nucleus ventralis anterior', 'nucleus ventralis anterior thalami', 'nucleus ventralis thalami anterior', 'ventral anterior nucleus of thalamus', 'ventral anterior thalamic nucleus', 'ventroanterior nucleus of the thalamus', 'ventroanterior thalamic nucleus'], 'label': 'ventral anterior nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['intermediate orbital gyrus'], 'label': 'anterior intermediate orbital gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002651', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002651', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'children': [], 'synonymLabels': ['cornu anterius (ventriculi lateralis)', 'cornu anterius ventriculi lateralis', 'cornu frontale (ventriculi lateralis)', 'cornu frontale ventriculi lateralis', 'frontal horn of lateral ventricle', 'ventriculus lateralis, cornu anterius'], 'label': 'anterior horn of lateral ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002655': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002655', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002655', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'children': [], 'synonymLabels': ['ventriculus lateralis, pars centralis', 'central part of lateral ventricle', 'corpus ventriculi lateralis', 'lateral ventricular body', 'pars centralis (ventriculi lateralis)', 'pars centralis ventriculi lateralis', 'ventriculus lateralis, corpus'], 'label': 'body of lateral ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002657': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002657', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002657', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002973', 'children': [], 'synonymLabels': ['parahippocampal gyrus (amaral)', 'parahippocampal gyrus (insausti)'], 'label': 'posterior parahippocampal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002661': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002661', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002661', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['marginal gyrus', 'superior frontal convolution'], 'label': 'superior frontal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002686': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002686', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002686', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006088', 'children': [], 'synonymLabels': ['middle part of inferior parietal lobule', 'preoccipital gyrus'], 'label': 'angular gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002688', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002688', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006088', 'children': [], 'synonymLabels': ['anterior part of inferior parietal lobule', 'inferior parietal lobule (krieg)'], 'label': 'supramarginal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002702': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002702', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002702', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['gyrus frontalis medialis', 'intermediate frontal gyrus', 'medial frontal gyrus'], 'label': 'middle frontal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002705': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002705', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002705', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['median nuclei of thalamus', 'midline nuclear group', 'midline nuclear group of thalamus', 'midline nuclei of thalamus', 'midline thalamic group', 'nuclei mediani (thalami)', 'nuclei mediani thalami', 'periventricular nuclei of thalamus'], 'label': 'midline nuclear complex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002707': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002707', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002707', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019258', 'children': [], 'synonymLabels': ['corticospinal tract', 'corticospinal fibers', 'fasciculus cerebro-spinalis', 'fasciculus pyramidalis', 'fibrae corticospinales', 'pyramid (Willis)', 'tractus cortico-spinalis', 'tractus corticospinalis', 'tractus pyramidalis'], 'label': 'pyramidal tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002726': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002726', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002240', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005841', 'http://purl.obolibrary.org/obo/UBERON_0014620', 'http://purl.obolibrary.org/obo/UBERON_0029626', 'http://purl.obolibrary.org/obo/UBERON_0014613', 'http://purl.obolibrary.org/obo/UBERON_0005849', 'http://purl.obolibrary.org/obo/UBERON_0014619', 'http://purl.obolibrary.org/obo/UBERON_0005854', 'http://purl.obolibrary.org/obo/UBERON_0007836', 'http://purl.obolibrary.org/obo/UBERON_0014621', 'http://purl.obolibrary.org/obo/UBERON_0014614', 'http://purl.obolibrary.org/obo/UBERON_0007714'], 'synonymLabels': ['cervical segment of spinal cord', 'cervical segments of spinal cord [1-8]', 'pars cervicalis medullae spinalis', 'segmenta cervicalia medullae spinalis [1-8'], 'label': 'cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002738': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002738', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002738', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': [], 'synonymLabels': ['cingulate gyrus isthmus', 'isthmus of fornicate gyrus', 'isthmus of limbic lobe', 'isthmus of cingulate gyrus'], 'label': 'cingulo-parahippocampal isthmus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002739': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002739', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002739', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['dorsal medial nucleus of thalamus', 'dorsomedial nucleus of thalamus', 'medial dorsal nucleus of thalamus', 'medial dorsal thalamic nucleus', 'medial nuclear group of thalamus', 'mediodorsal thalamic nucleus', 'nucleus dorsomedialis thalami'], 'label': 'mediodorsal nucleus of thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002740': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002740', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002740', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002967', 'children': [], 'synonymLabels': ['posterior cingulate gyrus'], 'label': 'cingulate gyrus, caudal (posterior) part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002743': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002743', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002743', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': ['https://purl.org/ccf/ASCTB-TEMP_septal-nuclei', 'http://purl.obolibrary.org/obo/UBERON_0003017'], 'synonymLabels': [], 'label': 'basal forebrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002751', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002751', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': [], 'synonymLabels': ['gyrus temporalis inferior', 'lateral occipitotemporal gyrus (heimer-83)'], 'label': 'inferior temporal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002756': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002756', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002756', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002967', 'children': [], 'synonymLabels': ['anterior cingulate gyrus'], 'label': 'cingulate gyrus, rostral (anterior) part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002761', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ifs1', 'https://purl.org/ccf/ASCTB-TEMP_ifs2', 'https://purl.org/ccf/ASCTB-TEMP_ifs3', 'https://purl.org/ccf/ASCTB-TEMP_ifs4'], 'synonymLabels': ['inferior frontal fissure', 'sulcus f2'], 'label': 'inferior frontal sulcus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002769': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002769', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002769', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': [], 'synonymLabels': ['gyrus temporalis superior'], 'label': 'superior temporal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002771': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002771', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002771', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': [], 'synonymLabels': ['gyrus temporalis medius', 'intermediate temporal gyrus'], 'label': 'middle temporal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002773', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003939', 'children': [], 'synonymLabels': ['anterior transverse convolution of heschl', 'anterior transverse temporal convolution of heschl', 'first transverse gyrus of Heschl', 'great transverse gyrus of Heschl', 'anterior transverse temporal gyrus'], 'label': 'rostral (anterior) transverse temporal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002774': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002774', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002774', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003939', 'children': [], 'synonymLabels': ['posterior transverse convolution of heschl', 'posterior transverse temporal convolution of heschl', 'posterior transverse temporal gyrus'], 'label': 'caudal (posterior) transverse temporal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002788': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002788', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002788', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['anterior nuclear group', 'anterior nuclear group of thalamus', 'anterior nuclei of thalamus', 'anterior nucleus of thalamus', 'anterior thalamic group', 'anterior thalamic nuclei', 'anterior thalamus', 'nuclei anterior thalami', 'nuclei anteriores (thalami)', 'nuclei anteriores thalami', 'nuclei thalamicus anterior'], 'label': 'anterior nuclear complex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002792': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002792', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002792', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002240', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014543', 'http://purl.obolibrary.org/obo/UBERON_0029636', 'http://purl.obolibrary.org/obo/UBERON_0005850', 'http://purl.obolibrary.org/obo/UBERON_0026386', 'http://purl.obolibrary.org/obo/UBERON_0007716'], 'synonymLabels': ['lumbar segment of spinal cord', 'lumbar segments of spinal cord [1-5]', 'pars lumbalis medullae spinalis', 'segmenta lumbalia medullae spinalis [1-5]', 'spinal cord lumbar segment'], 'label': 'lumbar spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002795': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002795', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002795', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['polus frontalis'], 'label': 'frontal pole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002824': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002824', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002824', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001800', 'children': [], 'synonymLabels': [\"Scarpa's ganglion\", 'vestibular part of vestibulocochlear ganglion', 'vestibulocochlear VIII ganglion vestibular component'], 'label': 'vestibular ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002834', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000044', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002844', 'http://purl.obolibrary.org/obo/UBERON_0002842', 'http://purl.obolibrary.org/obo/UBERON_0002838', 'http://purl.obolibrary.org/obo/UBERON_0002841', 'http://purl.obolibrary.org/obo/UBERON_0002839', 'http://purl.obolibrary.org/obo/UBERON_0002843', 'http://purl.obolibrary.org/obo/UBERON_0007711', 'http://purl.obolibrary.org/obo/UBERON_0002840'], 'synonymLabels': ['cervical spinal ganglion'], 'label': 'cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002835': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002835', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000044', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002851', 'http://purl.obolibrary.org/obo/UBERON_0002854', 'http://purl.obolibrary.org/obo/UBERON_0002848', 'http://purl.obolibrary.org/obo/UBERON_0002845', 'http://purl.obolibrary.org/obo/UBERON_0007712', 'http://purl.obolibrary.org/obo/UBERON_0002852', 'http://purl.obolibrary.org/obo/UBERON_0002846', 'http://purl.obolibrary.org/obo/UBERON_0002850', 'http://purl.obolibrary.org/obo/UBERON_0002849', 'http://purl.obolibrary.org/obo/UBERON_0002853', 'http://purl.obolibrary.org/obo/UBERON_0002847', 'http://purl.obolibrary.org/obo/UBERON_0002855'], 'synonymLabels': ['dorsal root ganglion of thorax', 'ganglion of dorsal root of thorax', 'ganglion spinalis of thorax', 'thoracic spinal ganglion', 'thorax dorsal root ganglion', 'thorax ganglion of dorsal root', 'thorax ganglion spinalis'], 'label': 'thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002836': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002836', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002836', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000044', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002859', 'http://purl.obolibrary.org/obo/UBERON_0002857', 'http://purl.obolibrary.org/obo/UBERON_0003943', 'http://purl.obolibrary.org/obo/UBERON_0002856', 'http://purl.obolibrary.org/obo/UBERON_0002858'], 'synonymLabels': ['lumbar spinal ganglion'], 'label': 'lumbar dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002837': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002837', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002837', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000044', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002860', 'http://purl.obolibrary.org/obo/UBERON_0007713', 'http://purl.obolibrary.org/obo/UBERON_0002861', 'http://purl.obolibrary.org/obo/UBERON_0002862'], 'synonymLabels': ['sacral spinal ganglion'], 'label': 'sacral dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002838': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002838', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002838', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['first cervical spinal ganglion'], 'label': 'first cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002839', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002839', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['C2 dorsal root ganglion', 'second cervical spinal ganglion'], 'label': 'second cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002840', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['C3 dorsal root ganglion', 'third cervical spinal ganglion'], 'label': 'third cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002841': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002841', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002841', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['C4 dorsal root ganglion', 'fourth cervical spinal ganglion'], 'label': 'fourth cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002842': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002842', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002842', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['C5 dorsal root ganglion', 'fifth cervical spinal ganglion'], 'label': 'fifth cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002843': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002843', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002843', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['C7 dorsal root ganglion', 'seventh cervical spinal ganglion'], 'label': 'seventh cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002844': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002844', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002844', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['eighth cervical spinal ganglion'], 'label': 'eighth cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002845': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002845', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002845', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['first thoracic spinal ganglion'], 'label': 'first thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002846': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002846', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002846', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['second thoracic spinal ganglion'], 'label': 'second thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002847', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002847', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['third thoracic spinal ganglion'], 'label': 'third thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002848': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002848', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002848', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['fifth thoracic spinal ganglion'], 'label': 'fifth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002849', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002849', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['sixth thoracic spinal ganglion'], 'label': 'sixth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002850': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002850', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002850', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['seventh thoracic spinal ganglion'], 'label': 'seventh thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002851': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002851', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002851', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['eighth thoracic spinal ganglion'], 'label': 'eighth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002852': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002852', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002852', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['ninth thoracic spinal ganglion'], 'label': 'ninth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002853': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002853', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002853', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['tenth thoracic spinal ganglion'], 'label': 'tenth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002854': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002854', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002854', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['eleventh thoracic spinal ganglion'], 'label': 'eleventh thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002855': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002855', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002855', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['twelfth thoracic spinal ganglion'], 'label': 'twelfth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002856': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002856', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002856', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002836', 'children': [], 'synonymLabels': ['second lumbar spinal ganglion'], 'label': 'second lumbar dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002857': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002857', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002857', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002836', 'children': [], 'synonymLabels': ['first lumbar spinal ganglion'], 'label': 'first lumbar dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002858': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002858', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002858', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002836', 'children': [], 'synonymLabels': ['third lumbar spinal ganglion'], 'label': 'third lumbar dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002859': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002859', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002859', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002836', 'children': [], 'synonymLabels': ['fifth lumbar spinal ganglion', 'L5 dorsal root ganglion'], 'label': 'fifth lumbar dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002860': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002860', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002860', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002837', 'children': [], 'synonymLabels': ['first sacral spinal ganglion'], 'label': 'first sacral dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002861': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002861', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002861', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002837', 'children': [], 'synonymLabels': ['second sacral spinal ganglion'], 'label': 'second sacral dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002862': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002862', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002862', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002837', 'children': [], 'synonymLabels': ['third sacral spinal ganglion'], 'label': 'third sacral dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002883': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002883', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002883', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['central amygdala', 'central nucleus of amygda', 'central nucleus of amygdala', 'central amygdaloid nucleus'], 'label': 'central nuclear group'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002886': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002886', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002886', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['lateral nucleus of amygdala', 'lateral principal nucleus of amygdala', 'lateral amygdaloid nucleus'], 'label': 'lateral nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002889': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002889', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002889', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['basomedial amygdalar nucleus', 'basomedial amygdaloid nucleus', 'medial basal nucleus of amygdala', 'medial division of basal nucleus', 'nucleus amygdalae basalis medialis', 'medial part of basal amygdaloid nucleus'], 'label': 'basomedial nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002890': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002890', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002890', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['anterior amygaloid area', 'anterior amygdaloid area'], 'label': 'anterior amygdalar area'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002891': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002891', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002891', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['posterior cortical amygdaloid nucleus', 'posterior cortical nucleus of amygdala', 'cortical amygdaloid nucleus'], 'label': 'posterior cortical nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002892': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002892', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002892', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['medial amygalar nucleus', 'medial nucleus of amygdala', 'medial amygdaloid nucleus'], 'label': 'medial nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002902', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002902', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': ['polus occipitalis'], 'label': 'occipital pole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002911', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002911', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'children': [], 'synonymLabels': ['operculum parietale'], 'label': 'parietal operculum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002942', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002942', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['nucleus ventralis posterior lateralis thalami', 'nucleus ventralis posterolateralis', 'nucleus ventralis posterolateralis thalami', 'nucleus ventralis thalami posterior lateralis', 'posterolateral ventral nucleus of thalamus', 'posterolateral ventral nucleus of the thalamus', 'ventral posterolateral nucleus of thalamus', 'ventral posterolateral nucleus of the thalamus', 'ventral posterolateral thalamic nucleus', 'ventral posterolateral nucleus'], 'label': 'ventral posterior lateral nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002943': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002943', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002943', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': ['gyrus occipitotemporalis medialis', 'lingula of cerebral hemisphere', 'medial occipitotemporal gyrus', 'medial occipitotemporal gyrus-2'], 'label': 'lingual gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002945': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002945', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002945', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['arcuate nucleus of thalamus', 'arcuate nucleus of the thalamus', 'arcuate nucleus-3', 'nucleus arcuatus thalami', 'nucleus semilunaris thalami', 'nucleus ventralis posterior medialis thalami', 'nucleus ventralis posteromedialis', 'nucleus ventralis posteromedialis thalami', 'nucleus ventrocaudalis anterior internus (hassler)', 'posteromedial ventral nucleus', 'posteromedial ventral nucleus of thalamus', 'posteromedial ventral nucleus of the thalamus', 'semilunar nucleus', 'thalamic gustatory nucleus', 'ventral posterior medial nucleus of thalamus', 'ventral posteromedial nucleus of thalamus', 'ventral posteromedial nucleus of the thalamus', 'ventral posteromedial thalamic nucleus', 'ventroposteromedial nucleus of the thalamus'], 'label': 'ventral posterior medial nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002947': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002947', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002947', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': [], 'label': 'frontal operculum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002948': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002948', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002948', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': ['gyrus occipitalis primus'], 'label': 'superior occipital gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002962', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002962', 'parent': 'http://purl.org/sig/ont/fma/fma321805', 'children': ['http://purl.org/sig/ont/fma/fma46119', 'http://purl.org/sig/ont/fma/fma46120'], 'synonymLabels': ['adductor pollicis'], 'label': 'adductor pollicis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002967': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002967', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002967', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002740', 'https://purl.org/ccf/ASCTB-TEMP_cingulate-gyrus-retrospleninal-part', 'http://purl.obolibrary.org/obo/UBERON_0002756'], 'synonymLabels': ['cingulate area', 'cingulate region', 'falciform lobe', 'upper limbic gyrus'], 'label': 'cingulate gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002972': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002972', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002972', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['central magnocellular nucleus of thalamus', 'central nucleus-1', 'centre median nucleus', 'centromedian nucleus of thalamus', 'centromedian thalamic nucleus', 'centrum medianum', 'centrum medianum thalami', 'noyau centre median of Luys', 'nucleus centralis centralis', 'nucleus centralis thalami (Hassler)', 'nucleus centri mediani thalami', 'nucleus centromedianus', 'nucleus centromedianus thalami', 'nucleus centrum medianum'], 'label': 'centromedian nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002973': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002973', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002973', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': ['http://purl.obolibrary.org/obo/UBERON_0022383', 'http://purl.obolibrary.org/obo/UBERON_0002657', 'http://purl.obolibrary.org/obo/UBERON_0034773'], 'synonymLabels': ['hippocampal gyrus'], 'label': 'parahippocampal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002980': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002980', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002980', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002998', 'children': [], 'synonymLabels': ['gyrus frontalis inferior, pars opercularis', 'opercular portion of inferior frontal gyrus', 'pars opercularis', 'pars opercularis gyri frontalis inferioris', 'pars posterior of inferior frontal gyrus', 'posterior part of inferior frontal gyrus', 'opercular part of inferior frontal gyrus'], 'label': 'inferior frontal gyrus, opercular part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002981': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002981', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002981', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['nuclei pulvinares', 'pulvinar', 'pulvinar nuclei', 'pulvinar thalami', 'pulvinar nucleus'], 'label': 'pulvinar of thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002983': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002983', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002983', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'children': [], 'synonymLabels': ['lateral posterior nucleus of thalamus', 'lateral posterior nucleus of the thalamus', 'lateral posterior thalamic nucleus', 'laterodorsal nucleus, caudal part', 'nucleus dorso-caudalis', 'nucleus dorsocaudalis (Hassler)', 'nucleus lateralis posterior', 'nucleus lateralis posterior thalami', 'nucleus lateralis thalami posterior', 'posterior lateral nucleus of thalamus'], 'label': 'lateral posterior nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002989': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002989', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002989', 'parent': 'http://purl.org/sig/ont/fma/fma37712', 'children': [], 'synonymLabels': ['anconeus', 'm. anconeus', 'musculus anconaeus', 'musculus anconeus'], 'label': 'anconeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002990', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': ['mammillothalamic tract of hypothalamus'], 'label': 'mammillothalamic tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0002998': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0002998', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0002998', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002980', 'http://purl.obolibrary.org/obo/UBERON_0002624', 'http://purl.obolibrary.org/obo/UBERON_0002629'], 'synonymLabels': ['inferior frontal convolution'], 'label': 'inferior frontal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003017', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002743', 'children': [], 'synonymLabels': ['innominate substance', 'nucleus of substantia innominata'], 'label': 'substantia innominata'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003020': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003020', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003020', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002600', 'children': [], 'synonymLabels': ['adolfactory area', 'area paraolfactoria', 'paraolfactory area', 'parolfactory area', 'subcallosal area'], 'label': 'subcallosal gyrus (parolfactory gyrus)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003023', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000988', 'children': ['http://purl.obolibrary.org/obo/UBERON_0007634', 'http://purl.obolibrary.org/obo/UBERON_0007228'], 'synonymLabels': ['dorsal pons', 'dorsal portion of pons', 'tegmental portion of pons', 'tegmentum of pons', 'tegmentum pontis'], 'label': 'pontine tegmentum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002240', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014541', 'http://purl.obolibrary.org/obo/UBERON_0005839', 'http://purl.obolibrary.org/obo/UBERON_0014609', 'http://purl.obolibrary.org/obo/UBERON_0026293', 'http://purl.obolibrary.org/obo/UBERON_0014636', 'http://purl.obolibrary.org/obo/UBERON_0005847', 'http://purl.obolibrary.org/obo/UBERON_0014607', 'http://purl.obolibrary.org/obo/UBERON_0005852', 'http://purl.obolibrary.org/obo/UBERON_0007837', 'http://purl.obolibrary.org/obo/UBERON_0014610', 'http://purl.obolibrary.org/obo/UBERON_0014637', 'http://purl.obolibrary.org/obo/UBERON_0007715'], 'synonymLabels': ['thoracic segment of spinal cord', 'thoracic segments of spinal cord [1-12]', 'pars thoracica medullae spinalis', 'segmenta thoracica medullae spinalis [1-12]', 'thoracic region of spinal cord'], 'label': 'thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003040', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'children': [], 'synonymLabels': ['anulus of cerebral aqueduct', 'central (periaqueductal) gray', 'midbrain periaqueductal grey', 'periaqueductal gray', 'periaqueductal gray matter', 'periaqueductal gray of tegmentum', 'periaqueductal grey', 'periaqueductal grey matter', 'periaqueductal grey substance', 'central gray substance of midbrain'], 'label': 'periaqueductal gray substance'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003124': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003124', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003124', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005630', 'children': ['https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorion-', 'https://purl.org/ccf/ASCTB-TEMP_chorionic-mesoderm'], 'synonymLabels': ['chorion membrane', 'chorion (vertebrates)', 'embryonic chorion', 'fetal chorion', 'uterine chorion'], 'label': 'chorion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003126': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003126', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003126', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003387', 'http://purl.obolibrary.org/obo/UBERON_0002202', 'http://purl.obolibrary.org/obo/UBERON_0003571', 'http://purl.obolibrary.org/obo/UBERON_0003604', 'http://purl.obolibrary.org/obo/UBERON_0001901'], 'synonymLabels': ['cartilaginous trachea', 'windpipe', 'vertebrate trachea'], 'label': 'trachea'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003222', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003222', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': ['http://purl.org/sig/ont/fma/fma38636', 'http://purl.org/sig/ont/fma/fma38637'], 'synonymLabels': ['flexor digitorum superficialis'], 'label': 'flexor digitorum superficialis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003228', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003228', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['supinator'], 'label': 'supinator muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003234', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003234', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['extensor pollicis longus'], 'label': 'extensor pollicis longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003250', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003250', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle', 'children': [], 'synonymLabels': ['lateral rectus capitis', 'musculus rectus capitis lateralis', 'rectus capitis lateralis', 'rectus capitus lateralis', 'rectus capitus lateralis muscle'], 'label': 'rectus capitis lateralis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003254', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003254', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000305', 'children': [], 'synonymLabels': ['amnion ectoderm', 'amnionic ectoderm'], 'label': 'amniotic ectoderm'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003262': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003262', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003262', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000305', 'children': [], 'synonymLabels': ['amnion mesenchyme', 'amnion mesoderm', 'amnionic mesoderm', 'mesenchyme of amnion'], 'label': 'amniotic mesoderm'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003315', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003315', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006960', 'children': [], 'synonymLabels': ['female reproductive system gonad mesenchyme', 'female reproductive system gonada mesenchyme', 'gonad of female reproductive system mesenchyme', 'gonada of female reproductive system mesenchyme', 'mesenchyme of female reproductive system gonad', 'mesenchyme of female reproductive system gonada', 'mesenchyme of gonad of female reproductive system', 'mesenchyme of gonada of female reproductive system', 'ovary mesenchyme'], 'label': 'mesenchyme of ovary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003329', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000159', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004760'], 'synonymLabels': ['anal canal submucosa', 'anal canal viewed anatomically submucosa', 'anal region submucosa', 'anatomical anal canal submucosa', 'submucosa of anal canal viewed anatomically', 'submucosa of anal region', 'submucosa of anatomical anal canal', 'submucosa of anal canal'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003331', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005304'], 'synonymLabels': ['colon submucosa', 'colonic submucosa', 'large bowel submucosa', 'submucosa of large bowel', 'submucosa of colon'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003332', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003332', 'parent': 'http://purl.org/sig/ont/fma/fma7206', 'children': ['https://purl.org/ccf/ASCTB-TEMP_endoethlial', 'https://purl.org/ccf/ASCTB-TEMP_lymphatic', 'https://purl.org/ccf/ASCTB-TEMP_nerves', 'http://purl.obolibrary.org/obo/UBERON_8410064'], 'synonymLabels': ['submucosa of duodenum', 'doudenal submucosa', 'duodenal submucosa', 'duodenum submucosa'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003333': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003333', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003333', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002115', 'children': [], 'synonymLabels': ['jejunal submucosa', 'jejunum submucosa', 'submucosa of jejunum'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003335': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003335', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003335', 'parent': '', 'children': [], 'synonymLabels': ['colon serosa', 'colon serous membrane', 'colonic serosa', 'large bowel serosa', 'large bowel serous membrane', 'serosa of large bowel', 'serous membrane of colon', 'serous membrane of large bowel', 'visceral peritoneum of colon', 'serosa of colon'], 'label': 'serosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003336': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003336', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003336', 'parent': 'http://purl.org/sig/ont/fma/fma7206', 'children': [], 'synonymLabels': ['serosa of duodenum', 'doudenal serosa', 'duodenal serosa', 'duodenum serosa', 'duodenum serous membrane', 'serous membrane of duodenum', 'visceral peritoneum of duodenum'], 'label': 'serosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003337', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003337', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002115', 'children': [], 'synonymLabels': ['jejunal serosa', 'jejunum serosa', 'jejunum serous membrane', 'serous membrane of jejunum', 'visceral peritoneum of jejunum', 'serosa of jejunum'], 'label': 'serosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003342': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003342', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003342', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000159', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015716'], 'synonymLabels': ['anal canal mucosa', 'anal canal mucosa of organ', 'anal canal mucous membrane', 'anal canal organ mucosa', 'anal canal viewed anatomically mucosa', 'anal canal viewed anatomically mucosa of organ', 'anal canal viewed anatomically mucous membrane', 'anal canal viewed anatomically organ mucosa', 'anal mucosa', 'anal mucous membrane', 'anal region mucosa', 'anal region mucosa of organ', 'anal region mucous membrane', 'anal region organ mucosa', 'anatomical anal canal mucosa', 'anatomical anal canal mucosa of organ', 'anatomical anal canal mucous membrane', 'anatomical anal canal organ mucosa', 'mucosa of anal canal viewed anatomically', 'mucosa of anal region', 'mucosa of anatomical anal canal', 'mucosa of organ of anal canal', 'mucosa of organ of anal canal viewed anatomically', 'mucosa of organ of anal region', 'mucosa of organ of anatomical anal canal', 'mucous membrane of anal canal', 'mucous membrane of anal canal viewed anatomically', 'mucous membrane of anal region', 'mucous membrane of anatomical anal canal', 'organ mucosa of anal canal', 'organ mucosa of anal canal viewed anatomically', 'organ mucosa of anal region', 'organ mucosa of anatomical anal canal', 'mucosa of anal canal'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003379', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003379', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': [], 'synonymLabels': ['cardiac muscle of right atrium', 'cardiac muscle of cardiac right atrium', 'cardiac muscle of heart right atrium', 'cardiac muscle tissue of heart right atrium', 'cardiac muscle tissue of right atrium', 'cardiac muscle tissue of right atrium of heart', 'myocardium of right atrium', 'right atrium heart muscle', 'right atrium myocardium', 'textus muscularis of myocardium of right atrium', 'textus muscularis of myocardium of right atrium of heart', 'textus muscularis of myocardium of right cardiac atrium'], 'label': 'myocardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003383', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003383', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': [], 'synonymLabels': ['cardiac muscle tissue of interventricular septum', 'cardiac muscle of interventricular septum', 'interventricular septum cardiac muscle', 'interventricular septum heart muscle', 'interventricular septum myocardium'], 'label': 'myocardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003387': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003387', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003387', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003126', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006680'], 'synonymLabels': ['trachea smooth muscle', 'tracheal smooth muscle'], 'label': 'smooth muscle of trachea'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003422': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003422', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003422', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002331', 'children': [], 'synonymLabels': ['mesenchyme of umbilical cord', 'umbilical cord mesenchyme', \"Wharton's jelly\"], 'label': \"mesenchyme of umbilical cord (wharton's jelly)\"}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003460', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003460', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002091', 'children': ['https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone', 'http://purl.obolibrary.org/obo/UBERON_0005897', 'http://purl.obolibrary.org/obo/UBERON_0007829'], 'synonymLabels': ['arm bone organ', 'bone of arm', 'bone organ of arm'], 'label': 'arm bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003468': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003468', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003468', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': [], 'label': 'ureteric segment of renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003470': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003470', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003470', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['superior labial branch of facial artery', 'arteria labialis superior', 'ramus labialis superior arteriae facialis', 'artery of upper lip'], 'label': 'superior labial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003471': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003471', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003471', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['inferior labial branch of facial artery', 'ramus labialis inferior (arteria facialis)', 'arteria labialis inferior', 'ramus labialis inferior arteriae facialis', 'artery of lower lip'], 'label': 'inferior labial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003477', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': [], 'synonymLabels': ['upper lip vein', 'vena labialis superior', 'vein of upper lip'], 'label': 'superior labial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003478': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003478', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003478', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': [], 'synonymLabels': ['lower lip vein', 'vena labialis inferior', 'vein of lower lip'], 'label': 'inferior labial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003517': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003517', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003517', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006544', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002303'], 'synonymLabels': ['blood vessel of kidney', 'renal blood vessel'], 'label': 'kidney blood vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003527': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003527', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003527', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006544', 'children': [], 'synonymLabels': ['blood capillary of kidney', 'capillary of kidney', 'capillary vessel of kidney', 'kidney blood capillary', 'kidney capillary vessel', 'renal capillary'], 'label': 'kidney capillary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003529': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003529', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003529', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018227', 'children': [], 'synonymLabels': ['apparatus respiratorius endothelium of lymph vessel', 'apparatus respiratorius lymph vessel endothelium', 'apparatus respiratorius lymphatic vessel endothelium', 'endothelium of lymph vessel of apparatus respiratorius', 'endothelium of lymph vessel of respiratory system', 'lymph vessel endothelium of apparatus respiratorius', 'lymph vessel endothelium of respiratory system', 'lymphatic vessel endothelium of apparatus respiratorius', 'lymphatic vessel endothelium of respiratory system', 'respiratory system endothelium of lymph vessel', 'respiratory system lymph vessel endothelium'], 'label': 'respiratory system lymphatic vessel endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003571': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003571', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003571', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003126', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003617', 'http://purl.obolibrary.org/obo/UBERON_0009644'], 'synonymLabels': ['connective tissue of trachea', 'connective tissue of windpipe'], 'label': 'trachea connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003590': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003590', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003590', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002182', 'children': [], 'synonymLabels': ['bronchus principalis connective tissue', 'bronchus principalis portion of connective tissue', 'bronchus principalis textus connectivus', 'connective tissue of bronchus principalis', 'connective tissue of main bronchus', 'connective tissue of primary bronchus', 'connective tissue of principal bronchus'], 'label': 'main bronchus connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003591': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003591', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003591', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'children': [], 'synonymLabels': ['connective tissue of lobar bronchus', 'connective tissue of secondary bronchus'], 'label': 'lobar bronchus connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003604': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003604', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003604', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003126', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006679'], 'synonymLabels': ['cartilage of trachea', 'cartilage of windpipe', 'cartilaginous ring of trachea', 'cartilaginous trachea cartilage', 'cartilago trachealis', 'windpipe cartilage', 'trachea cartilage'], 'label': 'tracheal cartilage'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003617': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003617', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003617', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003571', 'children': [], 'synonymLabels': ['cartilaginous trachea elastic connective tissue', 'cartilaginous trachea elastic tissue', 'cartilaginous trachea textus connectivus elasticus', 'elastic connective tissue of cartilaginous trachea', 'elastic connective tissue of vertebrate trachea', 'elastic connective tissue of windpipe', 'elastic tissue of cartilaginous trachea', 'elastic tissue of vertebrate trachea', 'elastic tissue of windpipe', 'textus connectivus elasticus of cartilaginous trachea', 'textus connectivus elasticus of vertebrate trachea', 'textus connectivus elasticus of windpipe', 'vertebrate trachea elastic connective tissue', 'vertebrate trachea elastic tissue', 'vertebrate trachea textus connectivus elasticus', 'windpipe elastic connective tissue', 'windpipe elastic tissue', 'windpipe textus connectivus elasticus'], 'label': 'trachea elastic tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003645': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003645', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003645', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma42788', 'http://purl.org/sig/ont/fma/fma42803', 'http://purl.org/sig/ont/fma/fma42869'], 'synonymLabels': ['finger 1 metacarpus', 'first digit of hand metacarpal', 'first digit of hand metacarpal bone', 'first metacarpal bone', 'hand digit 1 metacarpal', 'hand digit 1 metacarpal bone', 'manual digit 1 metacarpus', 'metacarpal 1', 'metacarpal bone digit 1', 'metacarpal bone of digit I', 'metacarpal bone of first digit of hand', 'metacarpal bone of hand digit 1', 'metacarpal bone of thumb', 'metacarpal I', 'metacarpal of first digit of hand', 'metacarpal of hand digit 1', 'metacarpal of thumb', 'thumb metacarpal', 'thumb metacarpal bone'], 'label': 'metacarpal bone of digit 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003646', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003646', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma42791', 'http://purl.org/sig/ont/fma/fma42806', 'http://purl.org/sig/ont/fma/fma42872'], 'synonymLabels': ['2 nd digit of hand metacarpal', '2 nd digit of hand metacarpal bone', '2 nd finger metacarpal', '2 nd finger metacarpal bone', 'finger 2 metacarpus', 'hand digit 2 metacarpal', 'hand digit 2 metacarpal bone', 'manual digit 2 metacarpus', 'metacarpal 2', 'metacarpal bone digit 2', 'metacarpal bone of 2 nd digit of hand', 'metacarpal bone of 2 nd finger', 'metacarpal bone of digit II', 'metacarpal bone of hand digit 2', 'metacarpal bone of second finger', 'metacarpal II', 'metacarpal of 2 nd digit of hand', 'metacarpal of 2 nd finger', 'metacarpal of hand digit 2', 'metacarpal of second finger', 'second finger metacarpal', 'second finger metacarpal bone', 'second metacarpal bone'], 'label': 'metacarpal bone of digit 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003647', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma42794', 'http://purl.org/sig/ont/fma/fma42809', 'http://purl.org/sig/ont/fma/fma42875'], 'synonymLabels': ['3 rd digit of hand metacarpal', '3 rd digit of hand metacarpal bone', '3 rd finger metacarpal', '3 rd finger metacarpal bone', 'finger 3 metacarpus', 'hand digit 3 metacarpal', 'hand digit 3 metacarpal bone', 'manual digit 3 metacarpus', 'metacarpal 3', 'metacarpal bone digit 3', 'metacarpal bone of 3 rd digit of hand', 'metacarpal bone of 3 rd finger', 'metacarpal bone of digit III', 'metacarpal bone of hand digit 3', 'metacarpal bone of third finger', 'metacarpal III', 'metacarpal of 3 rd digit of hand', 'metacarpal of 3 rd finger', 'metacarpal of hand digit 3', 'metacarpal of third finger', 'third finger metacarpal', 'third finger metacarpal bone', 'third metacarpal bone'], 'label': 'metacarpal bone of digit 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003648', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003648', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma42797', 'http://purl.org/sig/ont/fma/fma42812', 'http://purl.org/sig/ont/fma/fma42878'], 'synonymLabels': ['4 th digit of hand metacarpal', '4 th digit of hand metacarpal bone', '4 th finger metacarpal', '4 th finger metacarpal bone', 'finger 4 metacarpus', 'fourth finger metacarpal', 'fourth finger metacarpal bone', 'fourth metacarpal bone', 'hand digit 4 metacarpal', 'hand digit 4 metacarpal bone', 'manual digit 4 metacarpus', 'metacarpal 4', 'metacarpal bone digit 4', 'metacarpal bone of 4 th digit of hand', 'metacarpal bone of 4 th finger', 'metacarpal bone of digit IV', 'metacarpal bone of fourth finger', 'metacarpal bone of hand digit 4', 'metacarpal IV', 'metacarpal of 4 th digit of hand', 'metacarpal of 4 th finger', 'metacarpal of fourth finger', 'metacarpal of hand digit 4'], 'label': 'metacarpal bone of digit 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003649': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003649', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003649', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma42800', 'http://purl.org/sig/ont/fma/fma42815', 'http://purl.org/sig/ont/fma/fma42881'], 'synonymLabels': ['5 th digit of hand metacarpal', '5 th digit of hand metacarpal bone', '5 th finger metacarpal', '5 th finger metacarpal bone', 'fifth finger metacarpal', 'fifth finger metacarpal bone', 'fifth metacarpal bone', 'finger 5 metacarpus', 'hand digit 5 metacarpal', 'hand digit 5 metacarpal bone', 'manual digit 5 metacarpus', 'metacarpal 5', 'metacarpal bone digit 5', 'metacarpal bone of 5 th digit of hand', 'metacarpal bone of 5 th finger', 'metacarpal bone of digit V', 'metacarpal bone of fifth finger', 'metacarpal bone of hand digit 5', 'metacarpal of 5 th digit of hand', 'metacarpal of 5 th finger', 'metacarpal of fifth finger', 'metacarpal of hand digit 5', 'metacarpal V'], 'label': 'metacarpal bone of digit 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003650', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma42963', 'http://purl.org/sig/ont/fma/fma42983', 'http://purl.org/sig/ont/fma/fma43007'], 'synonymLabels': ['first metatarsal bone', 'foot digit 1 metatarsal bone', 'hallux metatarsal bone', 'metatarsal 1', 'metatarsal bone digit 1', 'metatarsal bone of digit I', 'metatarsal bone of foot digit 1', 'metatarsal bone of hallux', 'metatarsal I', 'toe 1 metatarsal', 'toe 1 metatarsus'], 'label': 'metatarsal bone of digit 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003651', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003651', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma42964', 'http://purl.org/sig/ont/fma/fma42986', 'http://purl.org/sig/ont/fma/fma43008'], 'synonymLabels': ['foot digit 2 metatarsal bone', 'metatarsal 2', 'metatarsal bone digit 2', 'metatarsal bone of digit II', 'metatarsal bone of foot digit 2', 'metatarsal II', 'second metatarsal bone', 'toe 2 metatarsal', 'toe 2 metatarsus'], 'label': 'metatarsal bone of digit 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003652': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003652', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003652', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma42965', 'http://purl.org/sig/ont/fma/fma42998', 'http://purl.org/sig/ont/fma/fma43009'], 'synonymLabels': ['foot digit 3 metatarsal bone', 'metatarsal 3', 'metatarsal bone digit 3', 'metatarsal bone of digit III', 'metatarsal bone of foot digit 3', 'metatarsal III', 'third metatarsal bone', 'toe 3 metatarsal', 'toe 3 metatarsus'], 'label': 'metatarsal bone of digit 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003653': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003653', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003653', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma42966', 'http://purl.org/sig/ont/fma/fma42999', 'http://purl.org/sig/ont/fma/fma43010'], 'synonymLabels': ['foot digit 4 metatarsal bone', 'fourth metatarsal bone', 'metatarsal 4', 'metatarsal bone digit 4', 'metatarsal bone of digit IV', 'metatarsal bone of foot digit 4', 'metatarsal IV', 'toe 4 metatarsal', 'toe 4 metatarsus'], 'label': 'metatarsal bone of digit 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003654', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma42967', 'http://purl.org/sig/ont/fma/fma43000', 'http://purl.org/sig/ont/fma/fma43011', 'http://purl.org/sig/ont/fma/fma76644'], 'synonymLabels': ['fifth metatarsal bone', 'foot digit 5 metatarsal bone', 'metatarsal 5', 'metatarsal bone digit 5', 'metatarsal bone of digit V', 'metatarsal bone of foot digit 5', 'metatarsal V', 'toe 5 metatarsal', 'toe 5 metatarsus'], 'label': 'metatarsal bone of digit 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003661': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003661', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003661', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014892', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003663'], 'synonymLabels': ['limb muscle organ', 'limb skeletal muscle', 'muscle organ of limb'], 'label': 'limb muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003663': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003663', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003663', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003661', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001383', 'http://purl.obolibrary.org/obo/UBERON_0001377'], 'synonymLabels': ['free lower limb muscle', 'hind limb muscle organ', 'hindlimb muscle organ', 'inferior member muscle organ', 'lower extremity muscle organ', 'lower limb skeletal muscle', 'muscle of free lower limb', 'muscle of posterior limb', 'muscle organ of hind limb', 'muscle organ of hindlimb', 'muscle organ of inferior member', 'muscle organ of lower extremity'], 'label': 'hindlimb muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003681': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003681', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003681', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006719', 'http://purl.obolibrary.org/obo/UBERON_0001597', 'http://purl.obolibrary.org/obo/UBERON_0006718', 'http://purl.obolibrary.org/obo/UBERON_0001598'], 'synonymLabels': ['muscle of mastication'], 'label': 'masticatory muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003682': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003682', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003682', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.org/sig/ont/fma/fma46727', 'https://purl.org/ccf/ASCTB-TEMP_musculus-uvulae-muscle', 'http://purl.obolibrary.org/obo/UBERON_0001574', 'http://purl.obolibrary.org/obo/UBERON_0008586'], 'synonymLabels': ['muscle of palate', 'musculi palati mollis et faucium', 'palate muscle', 'palatine muscle'], 'label': 'palatal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003690': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003690', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001094', 'children': ['https://purl.org/ccf/ASCTB-TEMP_alae-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_anterior-sacral-foramina-of-sacrum', 'http://purl.org/sig/ont/fma/fma31730', 'https://purl.org/ccf/ASCTB-TEMP_intermediate-sacral-crest-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_lateral-sacral-crest-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_linea-terminalis-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_median-sacral-crest-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_posterior-sacral-foramina-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-apex-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-canal-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-cornu-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-hiatus-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-promontory-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-spine-of-sacrum', 'https://purl.org/ccf/ASCTB-TEMP_sacral-tuberosity-of-sacrum', 'http://purl.org/sig/ont/fma/fma31733', 'http://purl.org/sig/ont/fma/fma16215', 'http://purl.org/sig/ont/fma/fma75796'], 'synonymLabels': ['fused sacrum', 'os sacrum [vertebrae sacrales I - V]', 'sacrum [sacral vertebrae I - V]', 'sacrum [sacral vertebrae I-V]'], 'label': 'sacrum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003711', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001585', 'children': ['http://purl.obolibrary.org/obo/UBERON_0007156', 'http://purl.obolibrary.org/obo/UBERON_0001586', 'http://purl.obolibrary.org/obo/UBERON_0001589', 'http://purl.obolibrary.org/obo/UBERON_0001590', 'http://purl.obolibrary.org/obo/UBERON_0001587', 'http://purl.org/sig/ont/fma/fma4744', 'http://purl.obolibrary.org/obo/UBERON_0001588'], 'synonymLabels': ['brachiocephalic venous tree', 'innominate vein'], 'label': 'brachiocephalic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003712': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003712', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003712', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007160', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001673', 'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-vein', 'http://purl.obolibrary.org/obo/UBERON_0011193', 'http://purl.obolibrary.org/obo/UBERON_0035231', 'http://purl.obolibrary.org/obo/UBERON_0011192'], 'synonymLabels': [], 'label': 'cavernous sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003713': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003713', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003713', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001248', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001215', 'http://purl.org/sig/ont/fma/fma15390', 'http://purl.obolibrary.org/obo/UBERON_0001214', 'http://purl.org/sig/ont/fma/fma70929', 'http://purl.obolibrary.org/obo/UBERON_0010400'], 'synonymLabels': ['vena splenica'], 'label': 'splenic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003715', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003715', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': ['http://purl.obolibrary.org/obo/UBERON_0018683', 'http://purl.obolibrary.org/obo/UBERON_0018675', 'http://purl.obolibrary.org/obo/UBERON_0018679'], 'synonymLabels': [], 'label': 'splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003716', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003716', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['nervus laryngeus recurrens', 'recurrent laryngeal nerve from vagus nerve', 'vagus X nerve recurrent laryngeal branch'], 'label': 'recurrent laryngeal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003721': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003721', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003721', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': [], 'synonymLabels': ['lingual branch of trigeminal nerve', 'trigeminal nerve lingual branch', 'trigeminal V nerve lingual branch'], 'label': 'lingual nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003724': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003724', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma62468', 'http://purl.org/sig/ont/fma/fma67952', 'http://purl.org/sig/ont/fma/fma62467', 'http://purl.org/sig/ont/fma/fma67953', 'http://purl.org/sig/ont/fma/fma81239', 'http://purl.org/sig/ont/fma/fma81240', 'http://purl.org/sig/ont/fma/fma39080'], 'synonymLabels': [\"casserio's nerve\"], 'label': 'musculocutaneous nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003725': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003725', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003725', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008833', 'http://purl.org/sig/ont/fma/fma6871', 'http://purl.org/sig/ont/fma/fma65414', 'http://purl.org/sig/ont/fma/fma6873'], 'synonymLabels': ['cervical plexus', 'plexus cervicalis'], 'label': 'cervical nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003726': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003726', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'children': ['http://purl.org/sig/ont/fma/fma6302', 'http://purl.org/sig/ont/fma/fma6312', 'http://purl.org/sig/ont/fma/fma6293', 'http://purl.org/sig/ont/fma/fma6037', 'http://purl.org/sig/ont/fma/fma6290', 'http://purl.org/sig/ont/fma/fma6306', 'http://purl.org/sig/ont/fma/fma6169', 'http://purl.org/sig/ont/fma/fma6299', 'http://purl.org/sig/ont/fma/fma6296', 'http://purl.org/sig/ont/fma/fma6309', 'http://purl.org/sig/ont/fma/fma6171', 'http://purl.org/sig/ont/fma/fma6167'], 'synonymLabels': ['nervus thoracis', 'thoracic spinal nerve'], 'label': 'thoracic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003846': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003846', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003846', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002125', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003987', 'http://purl.obolibrary.org/obo/UBERON_0006936'], 'synonymLabels': ['thymus gland epithelium', 'epithelial tissue of thymus', 'epithelial tissue of thymus gland', 'epithelium of thymus', 'epithelium of thymus gland', 'thymic epithelial tissue', 'thymic epithelium', 'thymus epithelial tissue', 'thymus gland epithelial tissue'], 'label': 'thymus epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003885': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003885', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003885', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012332', 'children': [], 'synonymLabels': [], 'label': 'mesometrium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003889': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003889', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012648', 'http://purl.obolibrary.org/obo/UBERON_0003984', 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'http://purl.obolibrary.org/obo/UBERON_0016632', 'http://purl.obolibrary.org/obo/UBERON_0001303', 'http://purl.obolibrary.org/obo/UBERON_0012331', 'http://purl.obolibrary.org/obo/UBERON_0001302'], 'synonymLabels': ['mammalian oviduct', 'uterine tube (sensu Mammalia)'], 'label': 'fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003902', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003902', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004904', 'children': [], 'synonymLabels': ['neural layer of retina', 'neural retina', 'neuroretina', 'stratum nervosum (retina)', 'stratum nervosum retinae'], 'label': 'retinal neural layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003910': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003910', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003910', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-venule-of-spleen', 'children': [], 'synonymLabels': ['sinusoidal blood vessel of spleen', 'splenic sinusoid'], 'label': 'splenic venous sinusoid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003939': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003939', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003939', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002774', 'http://purl.obolibrary.org/obo/UBERON_0002773'], 'synonymLabels': ['transverse gyrus of Heschl', \"Heshl's gyrus\", 'transverse temporal gyrus'], 'label': \"transverse temporal gyrus (heschl's gyrus)\"}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003943': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003943', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003943', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002836', 'children': [], 'synonymLabels': ['forth lumbar dorsal root ganglion', 'fourth lumbar spinal ganglion', 'L4 dorsal root ganglion'], 'label': 'fourth lumbar dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003952': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003952', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003952', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000964', 'children': [], 'synonymLabels': ['cornea anterior stroma'], 'label': 'anterior stroma of cornea'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003962', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': [], 'synonymLabels': ['Meckel ganglion', \"Meckel's ganglion\", 'nasal ganglion', 'palatine ganglion', 'pterygopalatine ganglia', 'sphenopalatine ganglion', 'sphenopalatine parasympathetic ganglion'], 'label': 'pterygopalatine ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003963': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003963', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003963', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': [], 'synonymLabels': [\"Arnold's ganglion\", 'otic parasympathetic ganglion'], 'label': 'otic ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003964', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001805', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002262', 'http://purl.obolibrary.org/obo/UBERON_0005453', 'http://purl.obolibrary.org/obo/UBERON_0016508', 'http://purl.obolibrary.org/obo/UBERON_0005479'], 'synonymLabels': ['collateral ganglion', 'previsceral ganglion'], 'label': 'prevertebral ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003975': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003975', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003975', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004175', 'children': [], 'synonymLabels': ['female internal genitalia', 'internal female genital organ', 'internal genitalia of female reproductive system'], 'label': 'internal female genitalia'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003981': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003981', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003981', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'children': [], 'synonymLabels': ['ovary primordial follicle', 'primordial follicle'], 'label': 'primordial ovarian follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003982': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003982', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003982', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cumulus-oophorus-oocyte-complex', 'http://purl.obolibrary.org/obo/UBERON_0000086'], 'synonymLabels': ['mature ovarian follicle', 'ovarian follicle stage IV', 'ovary mature follicle'], 'label': 'ovulatory antral follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003984': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003984', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410010', 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum'], 'synonymLabels': ['uterine tube infundibulum', 'infundibulum of oviduct', 'infundibulum of uterine tube'], 'label': 'infundibulum of fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003987': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003987', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003987', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003846', 'children': [], 'synonymLabels': [\"Hassall's corpuscle\", \"capsule of Hassal's corpuscle\", 'thymic corpuscle'], 'label': \"hassall's corpuscle\"}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0003988': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0003988', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0003988', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002125', 'children': [], 'synonymLabels': ['thymus corticomedullary boundary', 'thymic cortico-medullary boundary', 'thymic corticomedullary boundary', 'thymic corticomedullary junction', 'thymic corticomedullary zone', 'thymus CMZ', 'thymus cortico-medullary boundary', 'thymus corticomedullary junction', 'thymus corticomedullary zone'], 'label': 'corticomedullary boundary of thymus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004027', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004027', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600038', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cell-island', 'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorionic-plate-', 'http://purl.obolibrary.org/obo/UBERON_8600026'], 'synonymLabels': [], 'label': 'chorionic plate'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004041', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'children': [], 'synonymLabels': ['spleen primary B follicle', 'primary spleen B cell follicle'], 'label': 'primary follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004042', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005196', 'http://purl.obolibrary.org/obo/UBERON_0010421'], 'synonymLabels': ['secondary spleen B cell follicle', 'splenic secondary B cell follicle', 'spleen secondary B follicle'], 'label': 'secondary follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004058', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004058', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001279', 'children': [], 'synonymLabels': ['biliary ductule', 'bile ductule', 'ductuli biliferi'], 'label': 'bile duct/ule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004086': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004086', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004086', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002028', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002291', 'http://purl.obolibrary.org/obo/UBERON_0002422'], 'synonymLabels': ['brain ventricle', 'brain ventricles', 'cerebral ventricle', 'region of ventricular system of brain'], 'label': 'ventricles of hindbrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004096', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': ['axis dens', 'axis odontoid process', 'cervical vertebra 2 odontoid process', 'dens', 'dens axis', 'dens of axis', 'odontoid process', 'odontoid process of axis', 'odontoid process of cervical vertebra 2'], 'label': 'odontoid process of second cervical vertebra'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004100', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004100', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': [], 'synonymLabels': ['collecting duct system', 'kidney collecting duct system'], 'label': 'renal collecting system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004134': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004134', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004134', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001231', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004196', 'http://purl.obolibrary.org/obo/UBERON_0004197', 'http://purl.obolibrary.org/obo/UBERON_0001290'], 'synonymLabels': ['kidney proximal tubule', 'proximal kidney tubule', 'renal proximal tubule'], 'label': 'proximal tubule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004175', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004175', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000474', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003975'], 'synonymLabels': ['internal genitals'], 'label': 'internal genitalia'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004179': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004179', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004179', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000428', 'children': [], 'synonymLabels': ['prostatic acinus', 'prostatic follicle'], 'label': 'prostate glandular acinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004184', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004184', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002367', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004243'], 'synonymLabels': ['prostatic stroma', 'stroma of prostate', 'stroma of prostate gland', 'prostate gland stroma'], 'label': 'prostate stroma'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004188', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001229', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005750', 'http://purl.obolibrary.org/obo/UBERON_0005751'], 'synonymLabels': ['epithelium of glomerulus', 'epithelium of kidney glomerulus', 'epithelium of renal glomerulus', 'kidney glomerular epithelium'], 'label': 'glomerular epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004190': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004190', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004190', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000074', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004294'], 'synonymLabels': ['renal glomerulus vasculature', 'renal glomerulus vascular network', 'vascular network of renal glomerulus', 'vasculature of renal glomerulus'], 'label': 'glomerulus vasculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004193', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004193', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001231', 'children': [], 'synonymLabels': ['ascending limb thin segment of loop of Henle', 'ascending thin limb', 'pars ascendens (tubulus attenuatus)', 'thin ascending limb', 'thin ascending limb of loop of Henle', 'loop of Henle ascending limb thin segment'], 'label': 'loop of henle (thin limb)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004196', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004134', 'children': [], 'synonymLabels': ['proximal tubule segment 1', 'S1 portion of renal tubule', 'S1 portion of tubule', 'segment 1 of proximal tubule'], 'label': 'proximal convoluted tubule segment 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004197': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004197', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004197', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004134', 'children': [], 'synonymLabels': ['proximal tubule segment 2', 'S2 portion of renal tubule', 'S2 portion of tubule', 'segment 2 of proximal tubule'], 'label': 'proximal convoluted tubule segment 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004200', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004200', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000362', 'children': [], 'synonymLabels': ['Malpighian pyramid', 'kidney pyramid'], 'label': 'renal pyramid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004201': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004201', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004201', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000362', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001289'], 'synonymLabels': ['inner stripe', 'inner stripe of medulla of kidney', 'inner stripe of outer medulla', 'inner stripe of renal medulla', 'outer medulla inner stripe', 'stria interna medullae renalis'], 'label': 'kidney outer medulla inner stripe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004202', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004202', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000362', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001291'], 'synonymLabels': ['outer medulla outer stripe', 'outer stripe', 'outer stripe of medulla of kidney', 'outer stripe of outer medulla', 'outer stripe of renal medulla', 'stria externa medullae renalis'], 'label': 'kidney outer medulla outer stripe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004203', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004203', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001232', 'children': [], 'synonymLabels': ['cortical collecting duct', 'kidney cortex collecting duct'], 'label': 'collecting duct (cortex)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004204': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004204', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004204', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001232', 'children': [], 'synonymLabels': ['kidney outer medulla collecting duct', 'outer medullary collecting duct', 'outer renal medulla collecting duct'], 'label': 'collecting duct (outer medulla)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004205': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004205', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004205', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001232', 'children': [], 'synonymLabels': ['inner medullary collecting duct', 'inner renal medulla collecting duct', 'kidney inner medulla collecting duct'], 'label': 'collecting duct (inner medulla)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004212': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004212', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004212', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004639', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004640'], 'synonymLabels': ['blood capillary of renal glomerulus', 'capillary of renal glomerulus', 'capillary vessel of renal glomerulus', 'renal glomerulus blood capillary', 'renal glomerulus capillary', 'renal glomerulus capillary vessel'], 'label': 'glomerular capillary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004229': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004229', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004229', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001257', 'children': [], 'synonymLabels': ['deep trigone involuntary muscle', 'deep trigone non-striated muscle', 'deep trigone smooth muscle', 'deep trigone smooth muscle tissue', 'involuntary muscle of deep trigone', \"involuntary muscle of Lieutaud's trigone\", 'involuntary muscle of trigone of bladder', 'involuntary muscle of trigone of urinary bladder', 'involuntary muscle of urinary bladder trigone', 'involuntary muscle of vesical trigone', \"Lieutaud's trigone involuntary muscle\", \"Lieutaud's trigone non-striated muscle\", \"Lieutaud's trigone smooth muscle\", \"Lieutaud's trigone smooth muscle tissue\", 'non-striated muscle of deep trigone', \"non-striated muscle of Lieutaud's trigone\", 'non-striated muscle of trigone of bladder', 'non-striated muscle of trigone of urinary bladder', 'non-striated muscle of urinary bladder trigone', 'non-striated muscle of vesical trigone', 'smooth muscle of deep trigone', \"smooth muscle of Lieutaud's trigone\", 'smooth muscle of trigone of bladder', 'smooth muscle of trigone of urinary bladder', 'smooth muscle of urinary bladder trigone', 'smooth muscle of vesical trigone', 'smooth muscle tissue of deep trigone', \"smooth muscle tissue of Lieutaud's trigone\", 'smooth muscle tissue of trigone of bladder', 'smooth muscle tissue of trigone of urinary bladder', 'smooth muscle tissue of urinary bladder trigone', 'smooth muscle tissue of vesical trigone', 'trigone of bladder involuntary muscle', 'trigone of bladder non-striated muscle', 'trigone of bladder smooth muscle', 'trigone of bladder smooth muscle tissue', 'trigone of urinary bladder involuntary muscle', 'trigone of urinary bladder non-striated muscle', 'trigone of urinary bladder smooth muscle', 'trigone of urinary bladder smooth muscle tissue', 'urinary bladder trigone involuntary muscle', 'urinary bladder trigone muscle', 'urinary bladder trigone non-striated muscle', 'urinary bladder trigone smooth muscle tissue', 'vesical trigone involuntary muscle', 'vesical trigone non-striated muscle', 'vesical trigone smooth muscle', 'vesical trigone smooth muscle tissue'], 'label': 'urinary bladder trigone smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004237': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004237', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004237', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': [], 'synonymLabels': ['blood vessel involuntary muscle', 'blood vessel non-striated muscle', 'blood vessel smooth muscle tissue', 'involuntary muscle of blood vessel', 'non-striated muscle of blood vessel', 'smooth muscle of blood vessel', 'smooth muscle tissue of blood vessel', 'vascular smooth muscle tissue', 'blood vessel smooth muscle'], 'label': 'vascular smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004241': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004241', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004241', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002182', 'children': [], 'synonymLabels': ['bronchus principalis involuntary muscle', 'bronchus principalis non-striated muscle', 'bronchus principalis smooth muscle', 'bronchus principalis smooth muscle tissue', 'involuntary muscle of bronchus principalis', 'involuntary muscle of main bronchus', 'involuntary muscle of primary bronchus', 'involuntary muscle of principal bronchus', 'main bronchus involuntary muscle', 'main bronchus non-striated muscle', 'main bronchus smooth muscle tissue', 'non-striated muscle of bronchus principalis', 'non-striated muscle of main bronchus', 'non-striated muscle of primary bronchus', 'non-striated muscle of principal bronchus', 'primary bronchus involuntary muscle', 'primary bronchus non-striated muscle', 'primary bronchus smooth muscle', 'primary bronchus smooth muscle tissue', 'principal bronchus involuntary muscle', 'principal bronchus non-striated muscle', 'principal bronchus smooth muscle', 'principal bronchus smooth muscle tissue', 'smooth muscle of bronchus principalis', 'smooth muscle of main bronchus', 'smooth muscle of primary bronchus', 'smooth muscle of principal bronchus', 'smooth muscle tissue of bronchus principalis', 'smooth muscle tissue of main bronchus', 'smooth muscle tissue of primary bronchus', 'smooth muscle tissue of principal bronchus'], 'label': 'main bronchus smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004242', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004242', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'children': [], 'synonymLabels': ['non-striated muscle of bronchi', 'non-striated muscle of bronchial trunk', 'non-striated muscle of bronchus', 'smooth muscle of bronchi', 'smooth muscle of bronchial trunk', 'smooth muscle of bronchus', 'smooth muscle tissue of bronchi', 'smooth muscle tissue of bronchial trunk', 'smooth muscle tissue of bronchus', 'bronchus smooth muscle', 'bronchi involuntary muscle', 'bronchi non-striated muscle', 'bronchi smooth muscle', 'bronchi smooth muscle tissue', 'bronchial trunk involuntary muscle', 'bronchial trunk non-striated muscle', 'bronchial trunk smooth muscle', 'bronchial trunk smooth muscle tissue', 'bronchus involuntary muscle', 'bronchus non-striated muscle', 'bronchus smooth muscle tissue', 'involuntary muscle of bronchi', 'involuntary muscle of bronchial trunk', 'involuntary muscle of bronchus'], 'label': 'bronchial smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004243', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004243', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004184', 'children': [], 'synonymLabels': ['involuntary muscle of prostate', 'involuntary muscle of prostate gland', 'muscular tissue of prostate', 'non-striated muscle of prostate', 'non-striated muscle of prostate gland', 'prostate gland involuntary muscle', 'prostate gland non-striated muscle', 'prostate gland smooth muscle tissue', 'prostate involuntary muscle', 'prostate non-striated muscle', 'prostate smooth muscle', 'prostate smooth muscle tissue', 'smooth muscle of prostate', 'smooth muscle of prostate gland', 'smooth muscle tissue of prostate', 'smooth muscle tissue of prostate gland', 'substantia muscularis prostatae'], 'label': 'prostate gland smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004256': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004256', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004256', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001665'], 'synonymLabels': ['lower leg muscle'], 'label': 'hindlimb zeugopod muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004293', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004293', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034728', 'children': [], 'synonymLabels': ['nerve of parasympathetic nervous system'], 'label': 'parasympathetic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004294': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004294', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004294', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004190', 'children': [], 'synonymLabels': ['renal glomerulus capillary endothelium'], 'label': 'glomerular capillary endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004311': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004311', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004311', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37505', 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-hand', 'http://purl.org/sig/ont/fma/fma37563', 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-second-distal-phalanx-of-hand'], 'synonymLabels': ['distal phalanx of manual digit 2', '2nd digit of hand distal phalanx', '2nd finger distal phalanx', 'distal phalanx of 2nd digit of hand', 'distal phalanx of 2nd finger', 'distal phalanx of index finger', 'distal phalanx of manual digit II', 'distal phalanx of second digit of hand', 'distal phalanx of second finger', 'hand digit 2 distal phalanx', 'second distal phalanx of hand', 'second finger distal phalanx'], 'label': 'distal phalanx of digit of hand 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004312', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004312', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37517', 'http://purl.org/sig/ont/fma/fma37633', 'http://purl.org/sig/ont/fma/fma37575', 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-third-distal-phalanx-of-hand'], 'synonymLabels': ['distal phalanx of manual digit 3', '3rd digit of hand distal phalanx', '3rd finger distal phalanx', 'distal phalanx of 3rd digit of hand', 'distal phalanx of 3rd finger', 'distal phalanx of manual digit III', 'distal phalanx of middle finger', 'distal phalanx of third digit of hand', 'distal phalanx of third finger', 'equine 3rd phalanx of forelimb digit 3', 'equine forelimb distal phalanx', 'hand digit 3 distal phalanx', 'third distal phalanx of hand', 'third finger distal phalanx'], 'label': 'distal phalanx of digit of hand 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004313': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004313', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004313', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37529', 'http://purl.org/sig/ont/fma/fma37645', 'http://purl.org/sig/ont/fma/fma37587', 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fourth-distal-phalanx-of-hand'], 'synonymLabels': ['distal phalanx of manual digit 4', '4th digit of hand distal phalanx', '4th finger distal phalanx', 'distal phalanx of 4th digit of hand', 'distal phalanx of 4th finger', 'distal phalanx of fourth digit of hand', 'distal phalanx of fourth finger', 'distal phalanx of manual digit IV', 'distal phalanx of ring finger', 'fourth distal phalanx of hand', 'fourth finger distal phalanx', 'hand digit 4 distal phalanx'], 'label': 'distal phalanx of digit of hand 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004314', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004314', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37541', 'http://purl.org/sig/ont/fma/fma37657', 'http://purl.org/sig/ont/fma/fma37599', 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fifth-distal-phalanx-of-hand'], 'synonymLabels': ['distal phalanx of manual digit 5', '5th digit of hand distal phalanx', '5th finger distal phalanx', 'distal phalanx of 5th digit of hand', 'distal phalanx of 5th finger', 'distal phalanx of fifth digit of hand', 'distal phalanx of fifth finger', 'distal phalanx of little finger', 'distal phalanx of manual digit V', 'fifth distal phalanx of hand', 'fifth finger distal phalanx', 'hand digit 5 distal phalanx'], 'label': 'distal phalanx of digit of hand 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004315', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004315', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-foot', 'http://purl.org/sig/ont/fma/fma33036', 'http://purl.org/sig/ont/fma/fma32994'], 'synonymLabels': ['distal phalanx of pedal digit 1', 'distal phalanx of big toe', 'distal phalanx of first digit of foot', 'distal phalanx of foot digit 1', 'distal phalanx of great toe', 'distal phalanx of hallux', 'distal phalanx of pedal digit I', 'first distal phalanx of foot', 'foot digit 1 distal phalanx', 'hallux distal phalanx'], 'label': 'distal phalanx of digit of foot 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004316', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004316', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32961', 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-foot', 'http://purl.org/sig/ont/fma/fma33003'], 'synonymLabels': ['distal phalanx of pedal digit 2', '2nd toe distal phalanx', 'distal phalanx of 2nd toe', 'distal phalanx of foot digit 2', 'distal phalanx of pedal digit II', 'distal phalanx of second digit of foot', 'distal phalanx of second toe', 'distal phalanx of the 2nd toe', 'foot digit 2 distal phalanx', 'second distal phalanx of foot'], 'label': 'distal phalanx of digit of foot 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004317', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004317', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32970', 'http://purl.org/sig/ont/fma/fma33054', 'http://purl.org/sig/ont/fma/fma33012'], 'synonymLabels': ['distal phalanx of pedal digit 3', '3rd toe distal phalanx', 'distal phalanx of 3rd toe', 'distal phalanx of foot digit 3', 'distal phalanx of pedal digit III', 'distal phalanx of the 3rd toe', 'distal phalanx of third digit of foot', 'distal phalanx of third toe', 'equine 3rd phalanx of hindlimb digit 3', 'equine hindlimb distal phalanx', 'foot digit 3 distal phalanx', 'third distal phalanx of foot'], 'label': 'distal phalanx of digit of foot 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004318': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004318', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004318', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32979', 'http://purl.org/sig/ont/fma/fma33091', 'http://purl.org/sig/ont/fma/fma33021'], 'synonymLabels': ['distal phalanx of pedal digit 4', '4th toe distal phalanx', 'distal phalanx of 4th toe', 'distal phalanx of foot digit 4', 'distal phalanx of fourth digit of foot', 'distal phalanx of fourth toe', 'distal phalanx of pedal digit IV', 'distal phalanx of the 4th toe', 'foot digit 4 distal phalanx', 'fourth distal phalanx of foot'], 'label': 'distal phalanx of digit of foot 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004319', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004319', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32988', 'http://purl.org/sig/ont/fma/fma33106', 'http://purl.org/sig/ont/fma/fma33030'], 'synonymLabels': ['distal phalanx of pedal digit 5', '5th toe distal phalanx', 'distal phalanx of 5th toe', 'distal phalanx of fifth digit of foot', 'distal phalanx of fifth toe', 'distal phalanx of foot digit 5', 'distal phalanx of little toe', 'distal phalanx of pedal digit V', 'distal phalanx of the 5th toe', 'fifth distal phalanx of foot', 'foot digit 5 distal phalanx'], 'label': 'distal phalanx of digit of foot 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004320', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37502', 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-hand', 'http://purl.org/sig/ont/fma/fma37560'], 'synonymLabels': ['middle phalanx of manual digit 2', '2nd digit of hand intermediate phalanx', '2nd digit of hand middle phalanx', '2nd finger intermediate phalanx', '2nd finger middle phalanx', 'hand digit 2 intermediate phalanx', 'hand digit 2 middle phalanx', 'intermediate phalanx of 2nd digit of hand', 'intermediate phalanx of 2nd finger', 'intermediate phalanx of hand digit 2', 'intermediate phalanx of second finger', 'middle phalanx of 2nd digit of hand', 'middle phalanx of 2nd finger', 'middle phalanx of index finger', 'middle phalanx of manual digit II', 'middle phalanx of second digit of hand', 'middle phalanx of second finger', 'second finger intermediate phalanx', 'second finger middle phalanx', 'second middle phalanx of hand'], 'label': 'middle phalanx of digit of hand 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004321', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37514', 'https://purl.org/ccf/ASCTB-TEMP_head-of-third-middle-phalanx-of-hand', 'http://purl.org/sig/ont/fma/fma37572'], 'synonymLabels': ['middle phalanx of manual digit 3', 'middle phalanx of manual digit III', 'middle phalanx of middle finger', 'middle phalanx of third digit of hand', 'middle phalanx of third finger', 'third finger intermediate phalanx', 'third finger middle phalanx', 'third middle phalanx of hand', '3rd digit of hand intermediate phalanx', '3rd digit of hand middle phalanx', '3rd finger intermediate phalanx', '3rd finger middle phalanx', 'forelimb digit III P2', 'hand digit 3 intermediate phalanx', 'hand digit 3 middle phalanx', 'intermediate phalanx of 3rd digit of hand', 'intermediate phalanx of 3rd finger', 'intermediate phalanx of hand digit 3', 'intermediate phalanx of third finger', 'middle phalanx of 3rd digit of hand', 'middle phalanx of 3rd finger'], 'label': 'middle phalanx of digit of hand 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37526', 'http://purl.org/sig/ont/fma/fma37642', 'http://purl.org/sig/ont/fma/fma37584'], 'synonymLabels': ['middle phalanx of manual digit 4', '4th digit of hand intermediate phalanx', '4th digit of hand middle phalanx', '4th finger intermediate phalanx', '4th finger middle phalanx', 'fourth finger intermediate phalanx', 'fourth finger middle phalanx', 'fourth middle phalanx of hand', 'hand digit 4 intermediate phalanx', 'hand digit 4 middle phalanx', 'intermediate phalanx of 4th digit of hand', 'intermediate phalanx of 4th finger', 'intermediate phalanx of fourth finger', 'intermediate phalanx of hand digit 4', 'middle phalanx of 4th digit of hand', 'middle phalanx of 4th finger', 'middle phalanx of fourth digit of hand', 'middle phalanx of fourth finger', 'middle phalanx of manual digit IV', 'middle phalanx of ring finger'], 'label': 'middle phalanx of digit of hand 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004323': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004323', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004323', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37538', 'http://purl.org/sig/ont/fma/fma37654', 'http://purl.org/sig/ont/fma/fma37596'], 'synonymLabels': ['middle phalanx of manual digit 5', '5th digit of hand intermediate phalanx', '5th digit of hand middle phalanx', '5th finger intermediate phalanx', '5th finger middle phalanx', 'fifth finger intermediate phalanx', 'fifth finger middle phalanx', 'fifth middle phalanx of hand', 'hand digit 5 intermediate phalanx', 'hand digit 5 middle phalanx', 'intermediate phalanx of 5th digit of hand', 'intermediate phalanx of 5th finger', 'intermediate phalanx of fifth finger', 'intermediate phalanx of hand digit 5', 'middle phalanx of 5th digit of hand', 'middle phalanx of 5th finger', 'middle phalanx of fifth digit of hand', 'middle phalanx of fifth finger', 'middle phalanx of little finger', 'middle phalanx of manual digit V'], 'label': 'middle phalanx of digit of hand 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004324', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004324', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32958', 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-foot', 'http://purl.org/sig/ont/fma/fma33000'], 'synonymLabels': ['2nd toe intermediate phalanx', '2nd toe middle phalanx', 'foot digit 2 intermediate phalanx', 'foot digit 2 middle phalanx', 'intermediate phalanx of 2nd toe', 'intermediate phalanx of foot digit 2', 'middle phalanx of 2nd toe', 'middle phalanx of foot digit 2', 'middle phalanx of pedal digit II', 'middle phalanx of second digit of foot', 'middle phalanx of second toe', 'middle phalanx of the 2nd toe', 'second middle phalanx of foot', 'middle phalanx of pedal digit 2'], 'label': 'middle phalanx of digit of foot 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004325': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004325', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004325', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32967', 'http://purl.org/sig/ont/fma/fma33051', 'http://purl.org/sig/ont/fma/fma33009'], 'synonymLabels': ['3rd toe intermediate phalanx', '3rd toe middle phalanx', 'foot digit 3 intermediate phalanx', 'foot digit 3 middle phalanx', 'hindlimb digit III P2', 'intermediate phalanx of 3rd toe', 'intermediate phalanx of foot digit 3', 'middle phalanx of 3rd toe', 'middle phalanx of foot digit 3', 'middle phalanx of pedal digit III', 'middle phalanx of the 3rd toe', 'middle phalanx of third digit of foot', 'middle phalanx of third toe', 'third middle phalanx of foot', 'middle phalanx of pedal digit 3'], 'label': 'middle phalanx of digit of foot 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004326': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004326', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004326', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32976', 'http://purl.org/sig/ont/fma/fma33088', 'http://purl.org/sig/ont/fma/fma33018'], 'synonymLabels': ['4th toe intermediate phalanx', '4th toe middle phalanx', 'foot digit 4 intermediate phalanx', 'foot digit 4 middle phalanx', 'fourth middle phalanx of foot', 'intermediate phalanx of 4th toe', 'intermediate phalanx of foot digit 4', 'middle phalanx of 4th toe', 'middle phalanx of foot digit 4', 'middle phalanx of fourth digit of foot', 'middle phalanx of fourth toe', 'middle phalanx of pedal digit IV', 'middle phalanx of the 4th toe', 'middle phalanx of pedal digit 4'], 'label': 'middle phalanx of digit of foot 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004327': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004327', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004327', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32985', 'http://purl.org/sig/ont/fma/fma33103', 'http://purl.org/sig/ont/fma/fma33027'], 'synonymLabels': ['5th toe intermediate phalanx', '5th toe middle phalanx', 'foot digit 5 intermediate phalanx', 'foot digit 5 middle phalanx', 'intermediate phalanx of 5th toe', 'intermediate phalanx of foot digit 5', 'middle phalanx of 5th toe', 'middle phalanx of foot digit 5', 'middle phalanx of little toe', 'middle phalanx of pedal digit V', 'middle phalanx of the 5th toe', 'middle phalanx of pedal digit 5'], 'label': 'middle phalanx of digit of foot 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004328': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004328', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004328', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37499', 'http://purl.org/sig/ont/fma/fma37615', 'http://purl.org/sig/ont/fma/fma37557'], 'synonymLabels': ['proximal phalanx of manual digit 2', '2nd digit of hand proximal phalanx', '2nd finger proximal phalanx', 'hand digit 2 proximal phalanx', 'manual digit 2 proximal phalanx', 'manual phalanx II-1', 'proximal phalanx of 2nd digit of hand', 'proximal phalanx of 2nd finger', 'proximal phalanx of index finger', 'proximal phalanx of manual digit II', 'proximal phalanx of second digit of hand', 'proximal phalanx of second finger', 'second finger proximal phalanx', 'second proximal phalanx of hand'], 'label': 'proximal phalanx of digit of hand 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004329', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37511', 'http://purl.org/sig/ont/fma/fma37627', 'http://purl.org/sig/ont/fma/fma37569'], 'synonymLabels': ['proximal phalanx of manual digit 3', '3rd digit of hand proximal phalanx', '3rd finger proximal phalanx', 'hand digit 3 proximal phalanx', 'manual digit 3 proximal phalanx', 'manual phalanx III-1', 'proximal phalanx of 3rd digit of hand', 'proximal phalanx of 3rd finger', 'proximal phalanx of manual digit III', 'proximal phalanx of middle finger', 'proximal phalanx of third digit of hand', 'proximal phalanx of third finger', 'third finger proximal phalanx', 'third proximal phalanx of hand'], 'label': 'proximal phalanx of digit of hand 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004330', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004330', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37523', 'http://purl.org/sig/ont/fma/fma37639', 'http://purl.org/sig/ont/fma/fma37581'], 'synonymLabels': ['proximal phalanx of manual digit 4', '4th digit of hand proximal phalanx', '4th finger proximal phalanx', 'fourth finger proximal phalanx', 'fourth proximal phalanx of hand', 'hand digit 4 proximal phalanx', 'manual digit 4 proximal phalanx', 'manual phalanx IV-1', 'proximal phalanx of 4th digit of hand', 'proximal phalanx of 4th finger', 'proximal phalanx of fourth digit of hand', 'proximal phalanx of fourth finger', 'proximal phalanx of manual digit IV', 'proximal phalanx of ring finger'], 'label': 'proximal phalanx of digit of hand 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004331', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['http://purl.org/sig/ont/fma/fma37535', 'http://purl.org/sig/ont/fma/fma37651', 'http://purl.org/sig/ont/fma/fma37593'], 'synonymLabels': ['manual phalanx V-1', 'proximal phalanx of manual digit 5', '5th digit of hand proximal phalanx', '5th finger proximal phalanx', 'fifth finger proximal phalanx', 'fifth proximal phalanx of hand', 'hand digit 5 proximal phalanx', 'manual digit 5 proximal phalanx', 'proximal phalanx of 5th digit of hand', 'proximal phalanx of 5th finger', 'proximal phalanx of fifth digit of hand', 'proximal phalanx of fifth finger', 'proximal phalanx of little finger', 'proximal phalanx of manual digit V'], 'label': 'proximal phalanx of digit of hand 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004332', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004332', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-foot', 'http://purl.org/sig/ont/fma/fma33033', 'http://purl.org/sig/ont/fma/fma32991'], 'synonymLabels': ['foot digit 1 proximal phalanx', 'hallux proximal phalanx', 'pedal phalanx I-1', 'predal digit 1 proximal phalanx', 'proximal phalanx of big toe', 'proximal phalanx of foot digit 1', 'proximal phalanx of great toe', 'proximal phalanx of hallux', 'proximal phalanx of pedal digit I', 'proximal phalanx of the 1st toe', 'proximal phalanx of pedal digit 1'], 'label': 'proximal phalanx of digit of foot 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004333': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004333', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004333', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32955', 'http://purl.org/sig/ont/fma/fma33039', 'http://purl.org/sig/ont/fma/fma32997'], 'synonymLabels': ['foot digit 2 proximal phalanx', 'pedal phalanx II-1', 'predal digit 2 proximal phalanx', 'proximal phalanx of 2nd toe', 'proximal phalanx of foot digit 2', 'proximal phalanx of pedal digit II', 'proximal phalanx of second digit of foot', 'proximal phalanx of second toe', 'proximal phalanx of the 2nd toe', 'second proximal phalanx of foot', '2nd toe proximal phalanx', 'proximal phalanx of pedal digit 2'], 'label': 'proximal phalanx of digit of foot 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004334': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004334', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004334', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32964', 'http://purl.org/sig/ont/fma/fma33048', 'http://purl.org/sig/ont/fma/fma33006'], 'synonymLabels': ['3rd toe proximal phalanx', 'foot digit 3 proximal phalanx', 'pedal phalanx III-1', 'predal digit 3 proximal phalanx', 'proximal phalanx of 3rd toe', 'proximal phalanx of foot digit 3', 'proximal phalanx of pedal digit III', 'proximal phalanx of the 3rd toe', 'proximal phalanx of third digit of foot', 'proximal phalanx of third toe', 'third proximal phalanx of foot', 'proximal phalanx of pedal digit 3'], 'label': 'proximal phalanx of digit of foot 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004335': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004335', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004335', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32973', 'http://purl.org/sig/ont/fma/fma33085', 'http://purl.org/sig/ont/fma/fma33015'], 'synonymLabels': ['4th toe proximal phalanx', 'foot digit 4 proximal phalanx', 'fourth proximal phalanx of foot', 'pedal phalanx IV-1', 'predal digit 4 proximal phalanx', 'proximal phalanx of 4th toe', 'proximal phalanx of foot digit 4', 'proximal phalanx of fourth digit of foot', 'proximal phalanx of fourth toe', 'proximal phalanx of pedal digit IV', 'proximal phalanx of the 4th toe', 'proximal phalanx of pedal digit 4'], 'label': 'proximal phalanx of digit of foot 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004336': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004336', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004336', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'children': ['http://purl.org/sig/ont/fma/fma32982', 'http://purl.org/sig/ont/fma/fma33100', 'http://purl.org/sig/ont/fma/fma33024'], 'synonymLabels': ['5th toe proximal phalanx', 'fifth proximal phalanx of foot', 'foot digit 5 proximal phalanx', 'pedal phalanx V-1', 'predal digit 5 proximal phalanx', 'proximal phalanx of 5th toe', 'proximal phalanx of fifth digit of foot', 'proximal phalanx of fifth toe', 'proximal phalanx of foot digit 5', 'proximal phalanx of little toe', 'proximal phalanx of pedal digit V', 'proximal phalanx of the 5th toe', 'proximal phalanx of pedal digit 5'], 'label': 'proximal phalanx of digit of foot 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004337', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004337', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-hand', 'http://purl.org/sig/ont/fma/fma37609', 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-distal-phalanx-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-first-distal-phalanx-of-hand'], 'synonymLabels': ['distal phalanx of manual digit 1', 'distal phalanx of first digit of hand', 'distal phalanx of manual digit I', 'distal phalanx of thumb', 'first distal phalanx of hand', 'manual digit 1 distal phalanx', 'PDP', 'pollical distal phalanx', 'thumb distal phalanx'], 'label': 'distal phalanx of digit of hand 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004338': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004338', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004338', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'children': ['https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-hand', 'http://purl.org/sig/ont/fma/fma37606', 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-proximal-phalanx-of-hand'], 'synonymLabels': ['proximal phalanx of manual digit 1', 'first proximal phalanx of hand', 'manual digit 1 proximal phalanx', 'manual phalanx I-1', 'proximal phalanx of first digit of hand', 'proximal phalanx of manual digit I', 'proximal phalanx of thumb', 'thumb proximal'], 'label': 'proximal phalanx of digit of hand 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004515': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004515', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004515', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600000', 'children': [], 'synonymLabels': [], 'label': 'smooth muscle tissue of bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004516': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004516', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004516', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002187', 'children': [], 'synonymLabels': [], 'label': 'smooth muscle tissue of terminal bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004517': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004517', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004517', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002188', 'children': [], 'synonymLabels': [], 'label': 'smooth muscle tissue of respiratory bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004527': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004527', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004527', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['alveolar margin of maxilla', 'alveolar part of maxilla', 'alveolar ridge of maxilla', 'lower alveolar ridge', 'maxilla alveolar process', 'pars dentalis of maxilla', 'posterior alveolar ridge', 'processus alveolaris (maxilla)', 'processus alveolaris maxillae'], 'label': 'alveolar process of maxilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004535': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004535', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004535', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001009', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015410'], 'synonymLabels': [], 'label': 'cardiovascular system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004536': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004536', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004536', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002367', 'children': ['http://purl.org/sig/ont/fma/fma5832', 'http://purl.obolibrary.org/obo/UBERON_0001631'], 'synonymLabels': ['lymphatic trunks and ducts', 'lymphatic vasculature', 'lymphatic vessel network', 'lymphatic vessels set', 'set of lymphatic vessels', 'trunci et ductus lymphatici'], 'label': 'lymph vasculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004537': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004537', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004537', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001981'], 'synonymLabels': ['blood vascular network', 'set of blood vessels', 'vascular system'], 'label': 'blood vasculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004538': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004538', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004538', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': [], 'synonymLabels': [], 'label': 'left kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004539': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004539', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004539', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': [], 'synonymLabels': [], 'label': 'right kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004548': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004548', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004548', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': [], 'synonymLabels': ['left eyeball'], 'label': 'left eye'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004549': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004549', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004549', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': [], 'synonymLabels': ['right eyeball'], 'label': 'right eye'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004561': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004561', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004561', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001412', 'children': [], 'synonymLabels': ['common palmar digital venous tributary', 'distal palmar digital vein', 'proper palmal vein', 'proper palmar vein', 'tributary of common palmar digital vein'], 'label': 'proper palmar digital vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004572': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004572', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004572', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007798', 'children': [], 'synonymLabels': [], 'label': 'arterial system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004582': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004582', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004582', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007798', 'children': [], 'synonymLabels': ['vein system'], 'label': 'venous system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004601': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004601', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7608', 'http://purl.org/sig/ont/fma/fma7606', 'http://purl.org/sig/ont/fma/fma7602', 'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-first-rib', 'https://purl.org/ccf/ASCTB-TEMP_facet-of-first-rib', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-artery-of-first-rib', 'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-vein-of-first-rib', 'http://purl.org/sig/ont/fma/fma7600', 'http://purl.org/sig/ont/fma/fma7601', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-first-rib', 'https://purl.org/ccf/ASCTB-TEMP_scalene-tubercle-of-first-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-first-rib', 'http://purl.org/sig/ont/fma/fma7605'], 'synonymLabels': ['costa I', 'costa prima (I)', 'costa prima [I]', 'first rib'], 'label': 'rib 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004602': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004602', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7630', 'http://purl.org/sig/ont/fma/fma7627', 'http://purl.org/sig/ont/fma/fma7623', 'http://purl.org/sig/ont/fma/fma7636', 'http://purl.org/sig/ont/fma/fma7621', 'http://purl.org/sig/ont/fma/fma7628', 'http://purl.org/sig/ont/fma/fma7622', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-second-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-second-rib', 'http://purl.org/sig/ont/fma/fma7624', 'http://purl.org/sig/ont/fma/fma7626'], 'synonymLabels': ['costa II', 'costa secunda (II)', 'costa secunda [II]', 'second rib'], 'label': 'rib 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004603': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004603', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7711', 'http://purl.org/sig/ont/fma/fma7709', 'http://purl.org/sig/ont/fma/fma7700', 'http://purl.org/sig/ont/fma/fma7714', 'http://purl.org/sig/ont/fma/fma7640', 'http://purl.org/sig/ont/fma/fma7639', 'http://purl.org/sig/ont/fma/fma7706', 'http://purl.org/sig/ont/fma/fma7699', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-third-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-third-rib', 'http://purl.org/sig/ont/fma/fma7705', 'http://purl.org/sig/ont/fma/fma7708'], 'synonymLabels': ['costa III', 'third rib'], 'label': 'rib 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004604': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004604', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7761', 'http://purl.org/sig/ont/fma/fma7759', 'http://purl.org/sig/ont/fma/fma7757', 'http://purl.org/sig/ont/fma/fma7764', 'http://purl.org/sig/ont/fma/fma7751', 'http://purl.org/sig/ont/fma/fma7750', 'http://purl.org/sig/ont/fma/fma7754', 'http://purl.org/sig/ont/fma/fma7755', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fourth-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fourth-rib', 'http://purl.org/sig/ont/fma/fma7753', 'http://purl.org/sig/ont/fma/fma7758'], 'synonymLabels': ['costa IV', 'fourth rib'], 'label': 'rib 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004605': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004605', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7788', 'http://purl.org/sig/ont/fma/fma7786', 'http://purl.org/sig/ont/fma/fma7784', 'http://purl.org/sig/ont/fma/fma7791', 'http://purl.org/sig/ont/fma/fma7778', 'http://purl.org/sig/ont/fma/fma7777', 'http://purl.org/sig/ont/fma/fma7781', 'http://purl.org/sig/ont/fma/fma7782', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fifth-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fifth-rib', 'http://purl.org/sig/ont/fma/fma7780', 'http://purl.org/sig/ont/fma/fma7785'], 'synonymLabels': ['costa V', 'fifth rib'], 'label': 'rib 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004606': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004606', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7815', 'http://purl.org/sig/ont/fma/fma7813', 'http://purl.org/sig/ont/fma/fma7811', 'http://purl.org/sig/ont/fma/fma7818', 'http://purl.org/sig/ont/fma/fma7805', 'http://purl.org/sig/ont/fma/fma7804', 'http://purl.org/sig/ont/fma/fma7808', 'http://purl.org/sig/ont/fma/fma7809', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-sixth-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-sixth-rib', 'http://purl.org/sig/ont/fma/fma7807', 'http://purl.org/sig/ont/fma/fma7812'], 'synonymLabels': ['costa VI', 'sixth rib'], 'label': 'rib 6'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004607': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004607', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma7842', 'http://purl.org/sig/ont/fma/fma7840', 'http://purl.org/sig/ont/fma/fma7838', 'http://purl.org/sig/ont/fma/fma7845', 'http://purl.org/sig/ont/fma/fma7832', 'http://purl.org/sig/ont/fma/fma7831', 'http://purl.org/sig/ont/fma/fma7835', 'http://purl.org/sig/ont/fma/fma7836', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-seventh-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-seventh-rib', 'http://purl.org/sig/ont/fma/fma7834', 'http://purl.org/sig/ont/fma/fma7839'], 'synonymLabels': ['costa VII', 'seventh rib'], 'label': 'rib 7'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004608', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma8349', 'http://purl.org/sig/ont/fma/fma8347', 'http://purl.org/sig/ont/fma/fma8345', 'http://purl.org/sig/ont/fma/fma8352', 'http://purl.org/sig/ont/fma/fma8339', 'http://purl.org/sig/ont/fma/fma8338', 'http://purl.org/sig/ont/fma/fma8342', 'http://purl.org/sig/ont/fma/fma8343', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-ninth-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-ninth-rib', 'http://purl.org/sig/ont/fma/fma8341', 'http://purl.org/sig/ont/fma/fma8346'], 'synonymLabels': ['costa IX', 'ninth rib'], 'label': 'rib 9'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004609': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004609', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma8430', 'http://purl.org/sig/ont/fma/fma8428', 'http://purl.org/sig/ont/fma/fma8426', 'http://purl.org/sig/ont/fma/fma8433', 'https://purl.org/ccf/ASCTB-TEMP_facet-of-tenth-rib', 'http://purl.org/sig/ont/fma/fma8419', 'http://purl.org/sig/ont/fma/fma8424', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-tenth-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-tenth-rib', 'http://purl.org/sig/ont/fma/fma8427'], 'synonymLabels': ['costa X', 'tenth rib'], 'label': 'rib 10'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004610', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004610', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma8501', 'http://purl.org/sig/ont/fma/fma8506', 'https://purl.org/ccf/ASCTB-TEMP_facet-of-eleventh-rib', 'http://purl.org/sig/ont/fma/fma8500', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eleventh-rib'], 'synonymLabels': ['costa XI', 'eleventh rib'], 'label': 'rib 11'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004611': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004611', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004611', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma8517', 'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-twelfth-rib', 'https://purl.org/ccf/ASCTB-TEMP_facet-of-twelfth-rib', 'http://purl.org/sig/ont/fma/fma8516', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-twelfth-rib'], 'synonymLabels': ['costa XII', 'twelfth rib'], 'label': 'rib 12'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004612': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004612', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24283', 'http://purl.org/sig/ont/fma/fma24768', 'http://purl.org/sig/ont/fma/fma24242', 'http://purl.org/sig/ont/fma/fma24239', 'http://purl.org/sig/ont/fma/fma24245', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24280', 'http://purl.org/sig/ont/fma/fma24766', 'http://purl.org/sig/ont/fma/fma24300', 'http://purl.org/sig/ont/fma/fma24246', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24295'], 'synonymLabels': ['mammalian cervical vertebra 3', 'C3 vertebra', 'cervical vertebrae 3', 'third cervical vertebra', 'third cervical vertebra of axial skeleton'], 'label': 'cervical vertebra 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004613': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004613', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26348', 'http://purl.org/sig/ont/fma/fma26528', 'http://purl.org/sig/ont/fma/fma26316', 'http://purl.org/sig/ont/fma/fma26310', 'http://purl.org/sig/ont/fma/fma26354', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26342', 'http://purl.org/sig/ont/fma/fma26515', 'http://purl.org/sig/ont/fma/fma24303', 'http://purl.org/sig/ont/fma/fma26322', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24296'], 'synonymLabels': ['mammalian cervical vertebra 4', 'C4 vertebra', 'fourth cervical vertebra'], 'label': 'cervical vertebra 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004614': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004614', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26401', 'http://purl.org/sig/ont/fma/fma26529', 'http://purl.org/sig/ont/fma/fma26366', 'http://purl.org/sig/ont/fma/fma26360', 'http://purl.org/sig/ont/fma/fma26407', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26394', 'http://purl.org/sig/ont/fma/fma26518', 'http://purl.org/sig/ont/fma/fma24306', 'http://purl.org/sig/ont/fma/fma26372', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24297'], 'synonymLabels': ['mammalian cervical vertebra 5', 'C5 vertebra', 'fifth cervical vertebra'], 'label': 'cervical vertebra 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004615': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004615', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26451', 'http://purl.org/sig/ont/fma/fma26530', 'http://purl.org/sig/ont/fma/fma26419', 'http://purl.org/sig/ont/fma/fma26413', 'http://purl.org/sig/ont/fma/fma26457', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26445', 'http://purl.org/sig/ont/fma/fma26519', 'http://purl.org/sig/ont/fma/fma24309', 'http://purl.org/sig/ont/fma/fma26425', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24298'], 'synonymLabels': ['mammalian cervical vertebra 6', 'C6 vertebra', 'sixth cervical vertebra'], 'label': 'cervical vertebra 6'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004616': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004616', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26501', 'http://purl.org/sig/ont/fma/fma26531', 'http://purl.org/sig/ont/fma/fma26469', 'http://purl.org/sig/ont/fma/fma26463', 'http://purl.org/sig/ont/fma/fma26507', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma26495', 'http://purl.org/sig/ont/fma/fma26520', 'http://purl.org/sig/ont/fma/fma24312', 'http://purl.org/sig/ont/fma/fma26475', 'https://purl.org/ccf/ASCTB-TEMP_vertebra-prominens-of-seventh-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-cervical-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-cervical-vertebra', 'http://purl.org/sig/ont/fma/fma24299'], 'synonymLabels': ['mammalian cervical vertebra 7', 'C7 vertebra', 'prominent vertebra', 'seventh cervical vertebra', 'vertebra prominens (CVII)', 'vertebra prominens [C VII]'], 'label': 'cervical vertebra 7'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004617': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004617', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002414', 'children': ['http://purl.org/sig/ont/fma/fma16309', 'http://purl.org/sig/ont/fma/fma16349', 'http://purl.org/sig/ont/fma/fma16137', 'http://purl.org/sig/ont/fma/fma16289', 'http://purl.org/sig/ont/fma/fma16164', 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-first-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16094', 'http://purl.org/sig/ont/fma/fma16196', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16128', 'http://purl.org/sig/ont/fma/fma16272', 'http://purl.org/sig/ont/fma/fma16179', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-lumbar-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma24827'], 'synonymLabels': ['first lumbar vertebra', 'L1 vertebra'], 'label': 'lumbar vertebra 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004618', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002414', 'children': ['http://purl.org/sig/ont/fma/fma16310', 'http://purl.org/sig/ont/fma/fma16350', 'http://purl.org/sig/ont/fma/fma16138', 'http://purl.org/sig/ont/fma/fma16290', 'http://purl.org/sig/ont/fma/fma16165', 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-second-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16095', 'http://purl.org/sig/ont/fma/fma16197', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16129', 'http://purl.org/sig/ont/fma/fma16273', 'http://purl.org/sig/ont/fma/fma16180', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-lumbar-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma24828'], 'synonymLabels': ['L2 vertebra', 'second lumbar vertebra'], 'label': 'lumbar vertebra 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004619', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002414', 'children': ['http://purl.org/sig/ont/fma/fma16311', 'http://purl.org/sig/ont/fma/fma16351', 'http://purl.org/sig/ont/fma/fma16139', 'http://purl.org/sig/ont/fma/fma16291', 'http://purl.org/sig/ont/fma/fma16166', 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-third-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16096', 'http://purl.org/sig/ont/fma/fma16198', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16130', 'http://purl.org/sig/ont/fma/fma16274', 'http://purl.org/sig/ont/fma/fma16181', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-lumbar-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma24829'], 'synonymLabels': ['L3 vertebra', 'third lumbar vertebra'], 'label': 'lumbar vertebra 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004620': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004620', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002414', 'children': ['http://purl.org/sig/ont/fma/fma16312', 'http://purl.org/sig/ont/fma/fma16352', 'http://purl.org/sig/ont/fma/fma16140', 'http://purl.org/sig/ont/fma/fma16292', 'http://purl.org/sig/ont/fma/fma16167', 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fourth-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16097', 'http://purl.org/sig/ont/fma/fma16199', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16131', 'http://purl.org/sig/ont/fma/fma16275', 'http://purl.org/sig/ont/fma/fma16182', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-lumbar-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma24830'], 'synonymLabels': ['fourth lumbar vertebra', 'L4 vertebra'], 'label': 'lumbar vertebra 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004621': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004621', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002414', 'children': ['http://purl.org/sig/ont/fma/fma16313', 'http://purl.org/sig/ont/fma/fma16353', 'http://purl.org/sig/ont/fma/fma16141', 'http://purl.org/sig/ont/fma/fma16293', 'http://purl.org/sig/ont/fma/fma16168', 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fifth-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16098', 'http://purl.org/sig/ont/fma/fma16200', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma16132', 'http://purl.org/sig/ont/fma/fma16276', 'http://purl.org/sig/ont/fma/fma16183', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-lumbar-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-lumbar-vertebra', 'http://purl.org/sig/ont/fma/fma24831'], 'synonymLabels': ['fifth lumbar vertebra', 'L5 vertebra'], 'label': 'lumbar vertebra 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004626': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004626', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9183', 'http://purl.org/sig/ont/fma/fma9172', 'http://purl.org/sig/ont/fma/fma9177', 'http://purl.org/sig/ont/fma/fma9178', 'http://purl.org/sig/ont/fma/fma9175', 'http://purl.org/sig/ont/fma/fma9179', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9182', 'http://purl.org/sig/ont/fma/fma9171', 'http://purl.org/sig/ont/fma/fma9176', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-first-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9180', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-thoracic-vertebra'], 'synonymLabels': ['first dorsal vertebra', 'first thoracic vertebra', 'T1 vertebra'], 'label': 'thoracic vertebra 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004627': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004627', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9207', 'http://purl.org/sig/ont/fma/fma9193', 'http://purl.org/sig/ont/fma/fma9199', 'http://purl.org/sig/ont/fma/fma9200', 'http://purl.org/sig/ont/fma/fma9197', 'http://purl.org/sig/ont/fma/fma9201', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9205', 'http://purl.org/sig/ont/fma/fma9192', 'http://purl.org/sig/ont/fma/fma9198', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-second-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9202', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13482'], 'synonymLabels': ['second dorsal vertebra', 'second thoracic vertebra', 'T2 vertebra'], 'label': 'thoracic vertebra 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004628', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9229', 'http://purl.org/sig/ont/fma/fma9215', 'http://purl.org/sig/ont/fma/fma9221', 'http://purl.org/sig/ont/fma/fma9222', 'http://purl.org/sig/ont/fma/fma9219', 'http://purl.org/sig/ont/fma/fma9223', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9227', 'http://purl.org/sig/ont/fma/fma9214', 'http://purl.org/sig/ont/fma/fma9220', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-third-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9224', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13483'], 'synonymLabels': ['T3 vertebra', 'third dorsal vertebra', 'third thoracic vertebra'], 'label': 'thoracic vertebra 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004629': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004629', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9268', 'http://purl.org/sig/ont/fma/fma9254', 'http://purl.org/sig/ont/fma/fma9260', 'http://purl.org/sig/ont/fma/fma9261', 'http://purl.org/sig/ont/fma/fma9258', 'http://purl.org/sig/ont/fma/fma9262', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9266', 'http://purl.org/sig/ont/fma/fma9253', 'http://purl.org/sig/ont/fma/fma9259', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fourth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9263', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13484'], 'synonymLabels': ['fourth dorsal vertebra', 'fourth thoracic vertebra', 'T4 vertebra'], 'label': 'thoracic vertebra 4'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004630': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004630', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9942', 'http://purl.org/sig/ont/fma/fma9928', 'http://purl.org/sig/ont/fma/fma9934', 'http://purl.org/sig/ont/fma/fma9935', 'http://purl.org/sig/ont/fma/fma9932', 'http://purl.org/sig/ont/fma/fma9936', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9940', 'http://purl.org/sig/ont/fma/fma9927', 'http://purl.org/sig/ont/fma/fma9933', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fifth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9937', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13485'], 'synonymLabels': ['fifth dorsal vertebra', 'fifth thoracic vertebra', 'T5 vertebra'], 'label': 'thoracic vertebra 5'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004631': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004631', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9965', 'http://purl.org/sig/ont/fma/fma9951', 'http://purl.org/sig/ont/fma/fma9957', 'http://purl.org/sig/ont/fma/fma9958', 'http://purl.org/sig/ont/fma/fma9955', 'http://purl.org/sig/ont/fma/fma9959', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9963', 'http://purl.org/sig/ont/fma/fma9950', 'http://purl.org/sig/ont/fma/fma9956', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-sixth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9960', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13486'], 'synonymLabels': ['sixth dorsal vertebra', 'sixth thoracic vertebra', 'T6 vertebra'], 'label': 'thoracic vertebra 6'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004632', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9988', 'http://purl.org/sig/ont/fma/fma9974', 'http://purl.org/sig/ont/fma/fma9980', 'http://purl.org/sig/ont/fma/fma9981', 'http://purl.org/sig/ont/fma/fma9978', 'http://purl.org/sig/ont/fma/fma9982', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9986', 'http://purl.org/sig/ont/fma/fma9973', 'http://purl.org/sig/ont/fma/fma9979', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-seventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma9983', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13487'], 'synonymLabels': ['seventh dorsal vertebra', 'seventh thoracic vertebra', 'T7 vertebra'], 'label': 'thoracic vertebra 7'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004633': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004633', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-ninth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10034', 'http://purl.org/sig/ont/fma/fma13610', 'http://purl.org/sig/ont/fma/fma10026', 'http://purl.org/sig/ont/fma/fma10027', 'http://purl.org/sig/ont/fma/fma10024', 'http://purl.org/sig/ont/fma/fma10028', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-ninth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10032', 'http://purl.org/sig/ont/fma/fma10019', 'http://purl.org/sig/ont/fma/fma10025', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-ninth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10029', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-ninth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-ninth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13489'], 'synonymLabels': ['Ninth dorsal vertebra', 'ninth thoracic vertebra', 'T9 vertebra'], 'label': 'thoracic vertebra 9'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004634': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004634', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-tenth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10056', 'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-tenth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10048', 'http://purl.org/sig/ont/fma/fma10049', 'http://purl.org/sig/ont/fma/fma10046', 'http://purl.org/sig/ont/fma/fma10050', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-tenth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10054', 'http://purl.org/sig/ont/fma/fma10042', 'http://purl.org/sig/ont/fma/fma10047', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-tenth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10051', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-tenth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-tenth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13490'], 'synonymLabels': ['T10 vertebra', 'tenth dorsal vertebra', 'tenth thoracic vertebra'], 'label': 'thoracic vertebra 10'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004635': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004635', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eleventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10078', 'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-eleventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10070', 'http://purl.org/sig/ont/fma/fma10071', 'http://purl.org/sig/ont/fma/fma10068', 'http://purl.org/sig/ont/fma/fma10072', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eleventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10076', 'https://purl.org/ccf/ASCTB-TEMP_superior-costal-facet-of-eleventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10069', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eleventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10073', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eleventh-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eleventh-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13491'], 'synonymLabels': ['eleventh dorsal vertebra', 'eleventh thoracic vertebra', 'T11 vertebra'], 'label': 'thoracic vertebra 11'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['http://purl.org/sig/ont/fma/fma11994', 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-twelfth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10099', 'http://purl.org/sig/ont/fma/fma10092', 'http://purl.org/sig/ont/fma/fma10093', 'http://purl.org/sig/ont/fma/fma10090', 'http://purl.org/sig/ont/fma/fma10094', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-twelfth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10097', 'http://purl.org/sig/ont/fma/fma10091', 'http://purl.org/sig/ont/fma/fma10095', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-twelfth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-twelfth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13492'], 'synonymLabels': ['T12 vertebra', 'twelfth dorsal vertebra', 'twelfth thoracic vertebra'], 'label': 'thoracic vertebra 12'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004638', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': [], 'synonymLabels': [], 'label': 'blood vessel endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004639': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004639', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004639', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004723', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004212'], 'synonymLabels': ['renal afferent arteriole', 'afferent glomerular arteriole', 'afferent glomerular arteriole of kidney', 'kidney afferent arteriole', 'arteriola glomerularis afferens renis'], 'label': 'afferent arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004640': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004640', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004640', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004212', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005272'], 'synonymLabels': ['renal efferent arteriole', 'efferent glomerular arteriole', 'efferent glomerular arteriole of kidney', 'kidney efferent arteriole', 'arteriola glomerularis efferens renis'], 'label': 'efferent arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004641', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004641', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002106', 'children': ['https://purl.org/ccf/ASCTB-TEMP_connective-tissue', 'https://purl.org/ccf/ASCTB-TEMP_subcapsule', 'http://purl.obolibrary.org/obo/UBERON_0001265'], 'synonymLabels': ['spleen capsule', 'capsule of spleen', 'fibroelastic coat of spleen', 'fibrous capsule of spleen', 'Malpighian capsule', 'splenic capsule', 'tunica fibrosa (splen)(lien)', 'capsula splenica', 'tunica fibrosa splenica'], 'label': 'capsule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004645': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004645', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004645', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001259', 'children': [], 'synonymLabels': ['bladder transitional cell epithelium', 'transitional epithelium of urinary bladder', 'urinary bladder transitional epithelium', 'urothelium of urinary bladder'], 'label': 'urinary bladder urothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004646', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004646', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': ['http://purl.org/sig/ont/fma/fma49771'], 'synonymLabels': ['infra-orbital artery'], 'label': 'infraorbital artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004647', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002107', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001282', 'http://purl.obolibrary.org/obo/UBERON_0006841', 'http://purl.obolibrary.org/obo/UBERON_0006729', 'http://purl.obolibrary.org/obo/UBERON_0005452', 'http://purl.obolibrary.org/obo/UBERON_0001281', 'https://purl.org/ccf/ASCTB-TEMP_liver-immune-resident-component', 'http://purl.obolibrary.org/obo/UBERON_0001279', 'http://purl.obolibrary.org/obo/UBERON_0016478'], 'synonymLabels': ['liver lobule', 'lobuli hepatici', 'lobulus hepaticus'], 'label': 'hepatic lobule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004654', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001683', 'children': [], 'synonymLabels': ['facies temporalis ossis zygomatici', 'processus temporalis (os zygomaticum)', 'processus temporalis ossis zygomatici', 'zygomatic bone temporal process'], 'label': 'temporal process of zygomatic bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004671': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004671', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004671', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['gyrus rectus', 'medial part of gyri orbitales', 'rectal gyrus', 'rectus gyrus', 'straight gyrus'], 'label': 'gyrus rectus (straight gyrus)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004672': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004672', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004672', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'children': [], 'synonymLabels': ['cornu occipitale (ventriculi lateralis)', 'cornu occipitale ventriculi lateralis', 'cornu posterius (ventriculi lateralis)', 'cornu posterius ventriculi lateralis', 'occipital horn', 'occipital horn of lateral ventricle', 'posterior horn lateral ventricle', 'posterior horn of the lateral ventricle', 'ventriculus lateralis, cornu occipitale', 'ventriculus lateralis, cornu posterius'], 'label': 'posterior horn of lateral ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004688', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004688', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012321', 'http://purl.obolibrary.org/obo/UBERON_0006198'], 'synonymLabels': ['costo-cervical trunk', 'trunk of costocervical artery'], 'label': 'costocervical trunk'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004689': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004689', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004689', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011192', 'children': [], 'synonymLabels': ['naso-frontal vein'], 'label': 'nasofrontal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004703': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004703', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004703', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001897', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002788', 'http://purl.obolibrary.org/obo/UBERON_0002972', 'http://purl.obolibrary.org/obo/UBERON_0001926', 'http://purl.obolibrary.org/obo/UBERON_0002983', 'http://purl.obolibrary.org/obo/UBERON_0001927', 'http://purl.obolibrary.org/obo/UBERON_0002739', 'http://purl.obolibrary.org/obo/UBERON_0002705', 'http://purl.obolibrary.org/obo/UBERON_0001922', 'http://purl.obolibrary.org/obo/UBERON_0002981', 'http://purl.obolibrary.org/obo/UBERON_0001921', 'http://purl.obolibrary.org/obo/UBERON_0002637', 'http://purl.obolibrary.org/obo/UBERON_0001925', 'http://purl.obolibrary.org/obo/UBERON_0002942', 'http://purl.obolibrary.org/obo/UBERON_0002945'], 'synonymLabels': ['thalamus proper', 'thalamus, pars dorsalis', 'dorsal thalamus (Anthoney)', 'thalamus dorsalis'], 'label': 'dorsal thalamus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004719': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004719', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004719', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009887', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005168'], 'synonymLabels': ['kidney arcuate vein', 'arciform vein of kidney', 'arcuate vein of kidney', 'renal arcuate vein', 'venae arcuatae renis'], 'label': 'arcuate renal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004720': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004720', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004720', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002037', 'children': [], 'synonymLabels': ['cerebellum vermis', 'vermal parts of the cerebellum', 'vermal regions', 'vermis cerebelli [I-X]', 'vermis of cerebellum', 'vermis of cerebellum [I-X]'], 'label': 'cerebellar vermis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004723': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004723', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004723', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001552', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004639'], 'synonymLabels': ['interlobular artery', 'kidney interlobular artery'], 'label': 'interlobular renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004725': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004725', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004725', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['primary olfactory areas', 'cortex piriformis', 'piriform cortex'], 'label': 'lateral olfactory gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004726': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004726', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004726', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009202', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009091'], 'synonymLabels': ['vasa recta of kidney', 'kidney vasa recta', 'renal medullary capillary', 'set of straight arterioles of kidney', 'straight arterioles of kidney', 'arteriolae rectae renis', 'vasa recta renis'], 'label': 'vasa recta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004760': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004760', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004760', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003329', 'children': [], 'synonymLabels': ['gland of anal canal'], 'label': 'anal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004766': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004766', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004766', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005944', 'children': ['https://purl.org/ccf/ASCTB-TEMP_hyoid-region-bone', 'http://purl.obolibrary.org/obo/UBERON_0001703', 'http://purl.obolibrary.org/obo/UBERON_0010911', 'http://purl.obolibrary.org/obo/UBERON_0008895'], 'synonymLabels': ['cranium bone'], 'label': 'cranial bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004791': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004791', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004791', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002122', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001013'], 'synonymLabels': ['thymic trabecula', 'thymus gland trabecula', 'thymus trabeculae', 'trabecula of thymus', 'trabecula of thymus gland'], 'label': 'thymus trabecula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004801': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004801', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004801', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012250', 'http://purl.obolibrary.org/obo/UBERON_0006922'], 'synonymLabels': ['cervical canal epithelial tissue', 'cervical canal epithelium', 'cervical epithelium', 'cervix epithelial tissue', 'epithelium of cervix'], 'label': 'cervix epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004804', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004804', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-ampulla', 'children': ['http://purl.obolibrary.org/obo/UBERON_0007589', 'http://purl.obolibrary.org/obo/UBERON_0007590'], 'synonymLabels': ['epithelium of uterine tube', 'epithelial tissue of oviduct', 'epithelium of fallopian tube', 'epithelium of oviduct', 'oviduct epithelial tissue'], 'label': 'oviduct epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004848': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004848', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004848', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002040', 'children': [], 'synonymLabels': ['apparatus respiratorius arterial endothelium', 'apparatus respiratorius artery endothelium', 'apparatus respiratorius endothelium of artery', 'arterial endothelium of apparatus respiratorius', 'arterial endothelium of respiratory system', 'artery endothelium of apparatus respiratorius', 'artery endothelium of respiratory system', 'endothelium of artery of apparatus respiratorius', 'endothelium of artery of respiratory system', 'respiratory system artery endothelium', 'respiratory system endothelium of artery'], 'label': 'respiratory system arterial endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004849', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004849', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001592', 'children': [], 'synonymLabels': ['apparatus respiratorius endothelium of vein', 'apparatus respiratorius vein endothelium', 'apparatus respiratorius venous endothelium', 'endothelium of vein of apparatus respiratorius', 'endothelium of vein of respiratory system', 'respiratory system endothelium of vein', 'respiratory system vein endothelium', 'vein endothelium of apparatus respiratorius', 'vein endothelium of respiratory system', 'venous endothelium of apparatus respiratorius', 'venous endothelium of respiratory system'], 'label': 'respiratory system venous endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004864': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004864', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004864', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000966', 'children': [], 'synonymLabels': ['vasculature of retina', 'retina vasculature', 'retina vasculature of camera-type eye', 'retinal blood vessels', 'retinal blood vessels set', 'retinal vasculature', 'set of blood vessels of retina', 'set of retinal blood vessels', 'vasa sanguinea retinae'], 'label': 'vasculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004883': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004883', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004883', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002048', 'children': [], 'synonymLabels': ['lung-associated mesenchyme', 'mesenchyme of lung', 'pulmonary mesenchyme'], 'label': 'lung mesenchyme'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004884': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004884', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004884', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'children': [], 'synonymLabels': ['mesenchyme of lobar bronchus', 'lobar bronchus mesenchyme'], 'label': 'bronchial mesenchyme'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004904': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004904', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004904', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000970', 'children': ['http://purl.obolibrary.org/obo/UBERON_0034713', 'http://purl.obolibrary.org/obo/UBERON_0003902', 'http://purl.obolibrary.org/obo/UBERON_0001773', 'http://purl.obolibrary.org/obo/UBERON_0035966', 'http://purl.obolibrary.org/obo/UBERON_0006136'], 'synonymLabels': ['neuron projection bundle connecting eye with brain', 'optic nerve (generic)'], 'label': 'optic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004911', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004911', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary', 'children': [], 'synonymLabels': ['ovarian epithelium', 'ovary epithelium'], 'label': 'epithelium of female gonad'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004913': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004913', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004913', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001064', 'children': [], 'synonymLabels': ['ampulla biliaropancreatica', 'ampulla of bile duct', 'ampulla of Vater', 'biliaropancreatic ampulla', 'papilla Vateri', \"Vater's ampulla\"], 'label': 'hepatopancreatic ampulla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004915': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004915', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004915', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001064', 'children': [], 'synonymLabels': ['hepatopancreatic ampullary sphincter', 'musculus sphincter ampullae', 'musculus sphincter ampullae hepatopancreatica', \"Oddi's sphincter\", 'sphincter of ampulla of vater', 'sphincter of Oddi', 'sphincter of hepatopancreatic ampulla'], 'label': 'hepatopancreatic sphincter (sphincter of oddi)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004921': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004921', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004921', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001555', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001043', 'http://purl.obolibrary.org/obo/UBERON_0000945'], 'synonymLabels': [], 'label': 'subdivision of digestive tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004927': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004927', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004927', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001153', 'children': [], 'synonymLabels': ['caecum submucosa', 'cecum submucosa', 'intestinum crassum caecum submucosa', 'submucosa of caecum', 'submucosa of intestinum crassum caecum', 'submucosa of cecum'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004928': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004928', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004928', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001154', 'children': [], 'synonymLabels': ['submucosa of appendix', 'appendiceal submucosa', 'appendix submucosa', 'caecal appendix submucosa', 'submucosa of caecal appendix', 'submucosa of vermiform appendix', 'submucosa of vermix', 'vermiform appendix submucosa', 'vermix submucosa'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004943': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004943', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004943', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001256', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001261'], 'synonymLabels': ['bladder submucosa', 'submucosa of bladder', 'tela submucosa (vesica urinaria)', 'tela submucosa vesicae', 'tela submucosa vesicae urinariae', 'urinary bladder submucosa'], 'label': 'submucosa of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004944': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004944', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004944', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001257', 'children': [], 'synonymLabels': ['deep trigone submucosa', \"Lieutaud ' s trigone submucosa\", 'submucosa of deep trigone', \"submucosa of Lieutaud ' s trigone\", 'submucosa of trigone of bladder', 'submucosa of urinary bladder trigone', 'submucosa of vesical trigone', 'trigone of bladder submucosa', 'trigone of urinary bladder submucosa', 'urinary bladder trigone submucosa', 'vesical trigone submucosa'], 'label': 'submucosa of trigone of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004946': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004946', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004946', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002116', 'children': ['https://purl.org/ccf/ASCTB-TEMP_submucosa', 'https://purl.org/ccf/ASCTB-TEMP_submucosal-plexus-of-meissner'], 'synonymLabels': ['submucosa of ileum', 'ileal submucosa', 'ileum submucosa'], 'label': 'submucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0004989': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0004989', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0004989', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001154', 'children': [], 'synonymLabels': ['organ mucosa of caecal appendix', 'organ mucosa of vermiform appendix', 'organ mucosa of vermix', 'vermiform appendix mucosa', 'vermiform appendix mucosa of organ', 'vermiform appendix mucous membrane', 'vermiform appendix organ mucosa', 'vermix mucosa', 'vermix mucosa of organ', 'vermix mucous membrane', 'vermix organ mucosa', 'organ mucosa of appendix', 'caecal appendix organ mucosa', 'mucosa of caecal appendix', 'mucosa of organ of appendix', 'mucosa of organ of caecal appendix', 'mucosa of organ of vermiform appendix', 'mucosa of organ of vermix', 'mucosa of vermiform appendix', 'mucosa of vermix', 'mucous membrane of appendix', 'mucous membrane of caecal appendix', 'mucous membrane of vermiform appendix', 'mucous membrane of vermix', 'mucosa of appendix', 'appendiceal mucous membrane', 'appendix mucosa', 'appendix mucosa of organ', 'appendix mucous membrane', 'appendix organ mucosa', 'caecal appendix mucosa', 'caecal appendix mucosa of organ', 'caecal appendix mucous membrane'], 'label': 'mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005005', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005005', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000056', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001254'], 'synonymLabels': ['left ureter mucosa', 'left ureter mucosa of organ', 'left ureter mucous membrane', 'left ureter organ mucosa', 'left ureteral mucosa', 'mucosa of organ of left ureter', 'mucous membrane of left ureter', 'organ mucosa of left ureter'], 'label': 'mucosa of left ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001257', 'children': [], 'synonymLabels': ['deep trigone mucosa', 'deep trigone mucosa of organ', 'deep trigone mucous membrane', 'deep trigone organ mucosa', \"Lieutaud ' s trigone mucosa\", \"Lieutaud ' s trigone mucosa of organ\", \"Lieutaud ' s trigone mucous membrane\", \"Lieutaud ' s trigone organ mucosa\", 'mucosa of deep trigone', \"mucosa of Lieutaud ' s trigone\", 'mucosa of organ of deep trigone', \"mucosa of organ of Lieutaud ' s trigone\", 'mucosa of organ of trigone of bladder', 'mucosa of organ of trigone of urinary bladder', 'mucosa of organ of urinary bladder trigone', 'mucosa of organ of vesical trigone', 'mucosa of trigone of bladder', 'mucosa of urinary bladder trigone', 'mucosa of vesical trigone', 'mucous membrane of deep trigone', \"mucous membrane of Lieutaud ' s trigone\", 'mucous membrane of trigone of bladder', 'mucous membrane of trigone of urinary bladder', 'mucous membrane of urinary bladder trigone', 'mucous membrane of vesical trigone', 'organ mucosa of deep trigone', \"organ mucosa of Lieutaud ' s trigone\", 'organ mucosa of trigone of bladder', 'organ mucosa of trigone of urinary bladder', 'organ mucosa of urinary bladder trigone', 'organ mucosa of vesical trigone', 'trigone of bladder mucosa', 'trigone of bladder mucosa of organ', 'trigone of bladder mucous membrane', 'trigone of bladder organ mucosa', 'trigone of urinary bladder mucosa', 'trigone of urinary bladder mucosa of organ', 'trigone of urinary bladder mucous membrane', 'trigone of urinary bladder organ mucosa', 'urinary bladder trigone mucosa', 'urinary bladder trigone mucosa of organ', 'urinary bladder trigone mucous membrane', 'urinary bladder trigone organ mucosa', 'vesical trigone mucosa', 'vesical trigone mucosa of organ', 'vesical trigone mucous membrane', 'vesical trigone organ mucosa'], 'label': 'mucosa of trigone of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005096', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001289', 'children': [], 'synonymLabels': ['descending thin limb of loop of Henle', 'loop of Henle descending thin limb', 'loop of Henle thin descending limb', 'pars descendens (tubulus attenuatus)', 'thin descending limb', 'descending thin limb'], 'label': 'descending thin limb of loop of henle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005097', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005097', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001231', 'children': [], 'synonymLabels': ['kidney connecting tubule', 'renal connecting tubule'], 'label': 'connecting tubule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005099': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005099', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005099', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001289', 'children': [], 'synonymLabels': ['short descending thin limb'], 'label': 'descending thin limb of loop of henle 1'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005168': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005168', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005168', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004719', 'children': ['http://purl.org/sig/ont/fma/fma321526', 'http://purl.obolibrary.org/obo/UBERON_0010181'], 'synonymLabels': ['renal interlobular vein', 'interlobular vein', 'venae interlobulares renis'], 'label': 'interlobular renal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005169': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005169', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005169', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001279', 'children': [], 'synonymLabels': ['interstitial tissue', 'interstitium'], 'label': 'interstitial'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005170': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005170', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005170', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001306', 'children': ['https://purl.org/ccf/ASCTB-TEMP_corona-radiata'], 'synonymLabels': ['granulosa cell layer of ovarian follicle', 'membrana granulosa of ovarian follicle', 'ovary stratum granulosum', 'stratum granulosum of ovarian follicle'], 'label': 'granulosa cell layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005192', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005192', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001310', 'children': [], 'synonymLabels': ['artery of ductus deferens', 'ductus deferens artery', 'vas deferens artery', 'arteria ductus deferentis'], 'label': 'deferent duct artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005196', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004042', 'children': [], 'synonymLabels': ['germinal center of spleen', 'spleen follicle center', 'spleen GC', 'splenic germinal center', 'spleen germinal center'], 'label': 'germinal center'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005203', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005203', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002202', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600011'], 'synonymLabels': ['glandula trachealis', 'tracheal gland', 'trachea gland'], 'label': 'tracheal submucosal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005207': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005207', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005207', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'children': [], 'synonymLabels': [], 'label': 'tonsil capsule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005215', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005215', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001229', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002319'], 'synonymLabels': ['interstitial tissue of kidney', 'renal interstitial tissue', 'renal interstitium', 'renal stroma', 'stroma of kidney', 'kidney interstitium'], 'label': 'interstitium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005271': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005271', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005271', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001225', 'children': [], 'synonymLabels': ['inner cortex of kidney', 'inner renal cortex', 'juxtamedullary cortex of kidney'], 'label': 'juxtamedullary cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005272': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005272', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005272', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004640', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012441'], 'synonymLabels': [], 'label': 'peritubular capillary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': [], 'synonymLabels': ['hypogastric plexus', 'hypogastric nerve plexus'], 'label': 'hypogastric nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005304': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005304', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005304', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003331', 'children': [], 'synonymLabels': ['submucosal nerve plexus', 'submucous nerve plexus'], 'label': 'submucosal plexus of meissner'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005336': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005336', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005336', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001776', 'children': [], 'synonymLabels': ['capillary lamina of choroid', 'inner layer of choroid proper', 'choriocapillaris'], 'label': 'capillary layer of choroid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005353': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005353', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005353', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-white-pulp-border', 'children': [], 'synonymLabels': ['spleen perifollicular zone'], 'label': 'perifollicular zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005360': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005360', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005360', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001701', 'children': [], 'synonymLabels': ['extracraniale ganglion', 'ganglion inferius (nervus glossopharygeus)', 'ganglion inferius nervus glossopharyngei', 'ganglion of andersch', 'glossopharyngeal nerve inferior ganglion', 'glossopharyngeal nerve petrous ganglion', 'inferior ganglion of glossopharyngeal nerve', 'inferior glossopharyngeal ganglion', 'inferior glossopharyngeal ganglion of the glossopharyngeal (IX) nerve', 'ninth cranial nerve inferior ganglion', 'inferior glossopharyngeal IX ganglion'], 'label': 'inferior glossopharyngeal ix ganglion (petrosal ganglion)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005362': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005362', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005362', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005363', 'http://purl.obolibrary.org/obo/UBERON_0005364'], 'synonymLabels': ['vagus X ganglion', 'ganglion of vagus nerve', 'right glossopharyngeal ganglion', 'vagal ganglion', 'vagus ganglion', 'vagus neural ganglion'], 'label': 'vagus x ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005363': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005363', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005363', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005362', 'children': [], 'synonymLabels': ['ganglion inferius (nervus vagus)', 'ganglion inferius nervi vagi', 'ganglion inferius nervus vagi', 'ganglion nodosum', 'inferior ganglion of vagus', 'inferior ganglion of vagus nerve', 'nodose ganglion', 'tenth cranial nerve nodose ganglion', 'vagus nerve inferior ganglion', 'vagus nerve nodose ganglion', 'inferior vagus X ganglion'], 'label': 'inferior vagus x ganglion (nodose ganglion)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005364': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005364', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005364', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005362', 'children': [], 'synonymLabels': ['ganglion superius nervus vagi', 'superior ganglion of vagus', 'superior ganglion of vagus nerve', 'superior vagus ganglion', 'tenth cranial nerve jugular ganglion', 'vagus nerve jugular ganglion', 'vagus nerve superior ganglion', 'ganglion superius (nervus vagus)', 'superior vagus X ganglion'], 'label': 'superior vagus x ganglion (jugular ganglion)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005429': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005429', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005429', 'parent': '', 'children': [], 'synonymLabels': ['accessory pancreatic duct', 'duct of Santorini', \"Santorini's duct\", 'dorsal pancreatic duct'], 'label': 'accessory pancreatic duct (duct of santorini)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005431': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005431', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005431', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001535', 'children': ['https://purl.org/ccf/ASCTB-TEMP_sulcal-artery'], 'synonymLabels': ['anterior medial spinal artery', 'ventral spinal artery'], 'label': 'anterior spinal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005435': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005435', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005435', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': ['http://purl.org/sig/ont/fma/fma5841', 'http://purl.org/sig/ont/fma/fma12765', 'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-great-omentum', 'http://purl.org/sig/ont/fma/fma5840'], 'synonymLabels': ['atypical confluence of lymph trunks', 'chyle cistern', 'cistern of Pecquet', 'upper part of cisterna chyli'], 'label': 'cisterna chyli'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005436': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005436', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005436', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001640', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010132', 'http://purl.obolibrary.org/obo/UBERON_0015480', 'http://purl.org/sig/ont/fma/fma14776'], 'synonymLabels': [], 'label': 'common hepatic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005438': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005438', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005438', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006958', 'http://purl.obolibrary.org/obo/UBERON_0009687', 'http://purl.obolibrary.org/obo/UBERON_0035374'], 'synonymLabels': ['sinus coronarius'], 'label': 'coronary sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005441': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005441', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005441', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'children': [], 'synonymLabels': ['intercostales externus'], 'label': 'external intercostal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005442', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005442', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002461', 'children': [], 'synonymLabels': ['external abdominal oblique muscle', 'external oblique', 'external oblique muscle', 'obliquus externus abdominis'], 'label': 'abdominal external oblique muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005452', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005452', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': [], 'synonymLabels': ['hepatic cord', 'hepatic lamina', 'lamina hepatica', 'liver cell plate', 'hepatic laminae'], 'label': 'hepatic plate'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005453', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005453', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003964', 'children': [], 'synonymLabels': [], 'label': 'inferior mesenteric ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005461': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005461', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005461', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'children': [], 'synonymLabels': ['levator scapulae'], 'label': 'levator scapulae muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005463': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005463', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005463', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000029', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010396', 'http://purl.obolibrary.org/obo/UBERON_8410071', 'http://purl.obolibrary.org/obo/UBERON_8410072', 'http://purl.obolibrary.org/obo/UBERON_8410032'], 'synonymLabels': ['lymph node subcortical sinus', 'subcapsular sinus of lymph node'], 'label': 'subcapsular sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005464': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005464', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005464', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Middle sacral artery'], 'label': 'median sacral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005467': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005467', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005467', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['platysma'], 'label': 'platysma muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005475': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005475', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005475', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': ['http://purl.obolibrary.org/obo/UBERON_0017637', 'http://purl.obolibrary.org/obo/UBERON_0001641'], 'synonymLabels': [], 'label': 'sigmoid sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005476': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005476', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005476', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'children': ['http://purl.obolibrary.org/obo/UBERON_0017642', 'http://purl.obolibrary.org/obo/UBERON_0006839', 'http://purl.obolibrary.org/obo/UBERON_0017641', 'http://purl.obolibrary.org/obo/UBERON_0006838'], 'synonymLabels': ['spinal nerve (trunk)', 'spinal neural trunk', 'trunk of spinal nerve'], 'label': 'spinal nerve trunk'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005479': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005479', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005479', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003964', 'children': [], 'synonymLabels': [], 'label': 'superior mesenteric ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005481': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005481', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005481', 'parent': 'http://purl.org/sig/ont/fma/fma50784', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006666', 'http://purl.obolibrary.org/obo/UBERON_0007152', 'http://purl.obolibrary.org/obo/UBERON_0001669'], 'synonymLabels': ['tentorial sinus'], 'label': 'straight sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005483', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002370', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002125'], 'synonymLabels': ['lateral lobe of thymus', 'lobe of thymus', 'thymus subunit'], 'label': 'thymus lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005488', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005488', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035771', 'children': [], 'synonymLabels': ['plexus mesentericus superior', 'superior mesenteric nerve plexus'], 'label': 'superior mesenteric plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005608', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005608', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007150', 'children': [], 'synonymLabels': ['hyoid artery'], 'label': 'infrahyoid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005628', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-ileum'], 'synonymLabels': ['ileal branch of superior mesenteric artery'], 'label': 'ileal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005630': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005630', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005630', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001987', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003124', 'http://purl.obolibrary.org/obo/UBERON_0001295'], 'synonymLabels': ['fetal membrane'], 'label': 'fetal membranes'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000314', 'children': [], 'synonymLabels': ['caecum epithelium'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005742': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005742', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005742', 'parent': '', 'children': [], 'synonymLabels': [], 'label': 'adventitia'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005750': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005750', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005750', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004188', 'children': [], 'synonymLabels': [\"Bowman's parietal epithelium\", 'capsular epithelium', 'glomerular capsule parietal layer', 'outer layer of glomerular capsule', 'parietal capsular epithelium', \"parietal epithelium of Bowman's capsule\", 'parietal layer of Bowman capsule', \"parietal layer of Bowman's capsule\", 'parietal layer of glomerular capsule', 'renal glomerular capsule epithelium', 'glomerular parietal epithelium'], 'label': 'parietal epithelial layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005751', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005751', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004188', 'children': [], 'synonymLabels': [\"podocyte layer of Bowman's capsule\", \"visceral epithelium of Bowman's capsule\", \"visceral layer of Bowman's capsule\", 'visceral layer of glomerular capsule', \"Bowman's visceral epithelium\", 'glomerular capsule visceral layer', \"inner epithelial layer of Bowman's capsule\", 'glomerular visceral epithelium'], 'label': 'visceral epithelial layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005839', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005839', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': ['dorsal funiculus of thoracic segment of spinal cord', 'dorsal white column of thoracic segment of spinal cord', 'thoracic segment of dorsal funiculus of spinal cord', 'thoracic spinal cord posterior column'], 'label': 'thoracic spinal cord dorsal column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005840', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': ['sacral spinal cord posterior column', 'sacral subsegment of dorsal funiculus of spinal cord'], 'label': 'sacral spinal cord dorsal column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005841': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005841', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005841', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': ['cervical segment of dorsal funiculus of spinal cord', 'cervical spinal cord posterior column', 'dorsal funiculus of cervical segment of spinal cord', 'dorsal white column of cervical segment of spinal cord'], 'label': 'cervical spinal cord dorsal column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005843': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005843', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002240', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014547', 'http://purl.obolibrary.org/obo/UBERON_0005840', 'http://purl.obolibrary.org/obo/UBERON_0033939', 'http://purl.obolibrary.org/obo/UBERON_0031111', 'http://purl.obolibrary.org/obo/UBERON_0029503', 'http://purl.obolibrary.org/obo/UBERON_0005848', 'http://purl.obolibrary.org/obo/UBERON_0029538', 'http://purl.obolibrary.org/obo/UBERON_0005853', 'http://purl.obolibrary.org/obo/UBERON_0007835', 'http://purl.obolibrary.org/obo/UBERON_0032748', 'http://purl.obolibrary.org/obo/UBERON_0026246', 'http://purl.obolibrary.org/obo/UBERON_0007717'], 'synonymLabels': ['pars sacralis medullae spinalis', 'sacral segment of spinal cord', 'sacral segments of spinal cord [1-5]', 'segmenta sacralia medullae spinalis [1-5]'], 'label': 'sacral spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005847', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005847', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord lateral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005848': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005848', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005848', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord lateral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005849', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005849', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': [], 'label': 'cervical spinal cord lateral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005850': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005850', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005850', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002792', 'children': [], 'synonymLabels': [], 'label': 'lumbar spinal cord lateral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005852': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005852', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005852', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord ventral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005853': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005853', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005853', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord ventral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005854': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005854', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005854', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': ['cervical spinal cord anterior column'], 'label': 'cervical spinal cord ventral column'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005871': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005871', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005871', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['pars palatina of maxilla', 'processus palatinus (maxilla)'], 'label': 'palatine process of maxilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005893': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005893', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005893', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002091', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005899', 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', 'http://purl.obolibrary.org/obo/UBERON_0007830'], 'synonymLabels': [], 'label': 'leg bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005897': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005897', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005897', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003460', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001430', 'http://purl.obolibrary.org/obo/UBERON_0001431', 'http://purl.obolibrary.org/obo/UBERON_0001432', 'http://purl.obolibrary.org/obo/UBERON_0001433', 'http://purl.obolibrary.org/obo/UBERON_0004337', 'http://purl.obolibrary.org/obo/UBERON_0004311', 'http://purl.obolibrary.org/obo/UBERON_0004312', 'http://purl.obolibrary.org/obo/UBERON_0004313', 'http://purl.obolibrary.org/obo/UBERON_0004314', 'http://purl.obolibrary.org/obo/UBERON_0001428', 'http://purl.obolibrary.org/obo/UBERON_0003645', 'http://purl.obolibrary.org/obo/UBERON_0003646', 'http://purl.obolibrary.org/obo/UBERON_0003647', 'http://purl.obolibrary.org/obo/UBERON_0003648', 'http://purl.obolibrary.org/obo/UBERON_0003649', 'http://purl.obolibrary.org/obo/UBERON_0004320', 'http://purl.obolibrary.org/obo/UBERON_0004321', 'http://purl.obolibrary.org/obo/UBERON_0004322', 'http://purl.obolibrary.org/obo/UBERON_0004323', 'http://purl.obolibrary.org/obo/UBERON_0001429', 'http://purl.obolibrary.org/obo/UBERON_0004338', 'http://purl.obolibrary.org/obo/UBERON_0004328', 'http://purl.obolibrary.org/obo/UBERON_0004329', 'http://purl.obolibrary.org/obo/UBERON_0004330', 'http://purl.obolibrary.org/obo/UBERON_0004331', 'http://purl.obolibrary.org/obo/UBERON_0001427', 'http://purl.obolibrary.org/obo/UBERON_0002445'], 'synonymLabels': ['manus bone', 'bone of hand', 'bone of hand skeleton', 'bone of manus', 'bone of pectoral limb autopod', 'bone of pectoral limb autopodium', 'forelimb autopod bone', 'forelimb autopodium bone'], 'label': 'hand bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005899': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005899', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005899', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005893', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001450', 'http://purl.obolibrary.org/obo/UBERON_0001455', 'http://purl.obolibrary.org/obo/UBERON_0004315', 'http://purl.obolibrary.org/obo/UBERON_0004316', 'http://purl.obolibrary.org/obo/UBERON_0004317', 'http://purl.obolibrary.org/obo/UBERON_0004318', 'http://purl.obolibrary.org/obo/UBERON_0004319', 'http://purl.obolibrary.org/obo/UBERON_0001452', 'http://purl.obolibrary.org/obo/UBERON_0001453', 'http://purl.obolibrary.org/obo/UBERON_0001454', 'http://purl.obolibrary.org/obo/UBERON_0003650', 'http://purl.obolibrary.org/obo/UBERON_0003651', 'http://purl.obolibrary.org/obo/UBERON_0003652', 'http://purl.obolibrary.org/obo/UBERON_0003653', 'http://purl.obolibrary.org/obo/UBERON_0003654', 'http://purl.obolibrary.org/obo/UBERON_0004324', 'http://purl.obolibrary.org/obo/UBERON_0004325', 'http://purl.obolibrary.org/obo/UBERON_0004326', 'http://purl.obolibrary.org/obo/UBERON_0004327', 'http://purl.obolibrary.org/obo/UBERON_0001451', 'http://purl.obolibrary.org/obo/UBERON_0004332', 'http://purl.obolibrary.org/obo/UBERON_0004333', 'http://purl.obolibrary.org/obo/UBERON_0004334', 'http://purl.obolibrary.org/obo/UBERON_0004335', 'http://purl.obolibrary.org/obo/UBERON_0004336', 'http://purl.obolibrary.org/obo/UBERON_0002395'], 'synonymLabels': ['pes bone', 'bone of foor proper or tarsal skeleton', 'bone of foot', 'bone of pedal skeleton', 'bone of pes'], 'label': 'foot bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005922': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005922', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005922', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'children': [], 'synonymLabels': ['inferior nasal turbinate', 'inferior nasal turbinate bone', 'inferior turbinate'], 'label': 'inferior nasal concha'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0005944': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0005944', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0005944', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004288', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004766', 'http://purl.obolibrary.org/obo/UBERON_0014477', 'http://purl.obolibrary.org/obo/UBERON_0001130'], 'synonymLabels': ['axial skeleton plus cranial skeleton'], 'label': 'axial skeleton'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006082': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006082', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006082', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001255', 'children': ['http://purl.obolibrary.org/obo/UBERON_0016500', 'http://purl.obolibrary.org/obo/UBERON_0001257', 'http://purl.obolibrary.org/obo/UBERON_0012303'], 'synonymLabels': ['base of urinary bladder', 'fundus vesicae', 'urinary bladder base', 'urinary bladder fundus', 'urinary bladder fundus region'], 'label': 'fundus of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006083': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006083', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006083', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0022364', 'children': [], 'synonymLabels': ['perirhinal cortex', 'perirhinal area'], 'label': 'perirhinal gyrus ( rostral part of fugt)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006088', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006088', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002686', 'http://purl.obolibrary.org/obo/UBERON_0002688'], 'synonymLabels': ['inferior parietal cortex'], 'label': 'inferior parietal lobule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006091', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'children': [], 'synonymLabels': ['cornu inferius (ventriculi lateralis)', 'cornu inferius ventriculi lateralis', 'cornu temporale (ventriculi lateralis)', 'cornu temporale ventriculi lateralis', 'inferior horn of the lateral ventricle', 'temporal horn of lateral ventricle', 'ventriculus lateralis, cornu inferius', 'ventriculus lateralis, cornu temporale'], 'label': 'inferior horn of lateral ventricle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006092': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006092', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006092', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': ['cuneate lobule', 'cuneus cortex', 'cuneus gyrus', 'cuneus of hemisphere'], 'label': 'cuneus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006093': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006093', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006093', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'children': [], 'synonymLabels': ['precuneate lobule', 'precuneus cortex', 'quadrate lobule'], 'label': 'precuneus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006094', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006094', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'children': [], 'synonymLabels': ['superior parietal cortex', 'superior parietal gyrus', 'superior parietal lobule', 'superior portion of parietal gyrus'], 'label': 'supraparietal lobule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006107', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['amygdalar basolateral nucleus', 'amygdaloid basolateral complex', 'basolateral amygdala', 'basolateral amygdaloid nuclear complex', 'basolateral nuclear complex', 'basolateral nuclear group', 'basolateral nuclei of amygdala', 'basolateral subdivision of amygdala', 'BL', 'pars basolateralis (Corpus amygdaloideum)', 'vicarious cortex'], 'label': 'basolateral nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006134': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006134', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006134', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['nerve fiber', 'nerve fibre', 'neurofibra', 'neurofibrum'], 'label': 'nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006136': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006136', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006136', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004904', 'children': [], 'synonymLabels': ['unmyelinated nerve fiber', 'non-myelinated nerve fiber'], 'label': 'unmyelinated nerve bundles'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006137': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006137', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006137', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001410', 'children': [], 'synonymLabels': ['proper palmal digital arteries', 'proper palmar digital arteries', 'proper palmar digital arteries set', 'arteriae digitales palmares propriae'], 'label': 'proper palmar digital artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006139': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006139', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006139', 'parent': 'http://purl.org/sig/ont/fma/fma44504', 'children': [], 'synonymLabels': [], 'label': 'plantar digital vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006144': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006144', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006144', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001546', 'children': ['http://purl.org/sig/ont/fma/fma44489'], 'synonymLabels': ['medial plantar digital vein'], 'label': 'medial plantar vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006198', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006198', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004688', 'children': ['http://purl.org/sig/ont/fma/fma66241', 'http://purl.org/sig/ont/fma/fma3994'], 'synonymLabels': ['dorsal intercostal artery', 'superior intercostal artery'], 'label': 'supreme intercostal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006199', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006199', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'children': [], 'synonymLabels': [], 'label': 'posterior auricular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006320', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['inferior oblique', 'inferior oblique muscle', 'm. obliquus inferior', 'musculus obliquus inferior', 'musculus obliquus inferior bulbi', 'obliquus inferior', 'obliquus oculi inferior', 'ventral oblique extraocular muscle'], 'label': 'inferior oblique extraocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006321', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['dorsal oblique extraocular muscle', 'musculus obliquus superior', 'obliquus superior', 'superior oblique', 'superior oblique muscle'], 'label': 'superior oblique extraocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['inferior rectus', 'inferior rectus muscle', 'm. rectus inferior', 'musculus rectus inferior', 'ventral rectus extraocular muscle'], 'label': 'inferior rectus extraocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006323': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006323', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006323', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['dorsal rectus extraocular muscle', 'm. rectus superior', 'musculus rectus superior', 'superior rectus', 'superior rectus muscle'], 'label': 'superior rectus extraocular muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006345': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006345', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006345', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'children': [], 'synonymLabels': ['stapedial artery temporary'], 'label': 'stapedial artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006355': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006355', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006355', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': [], 'label': 'superior vesical vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006447': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006447', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006447', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007716', 'children': [], 'synonymLabels': ['fifth lumbar spinal cord segment', 'L5 segment', 'L5 spinal cord segment', 'L5 segment of lumbar spinal cord'], 'label': 'l5 lumbar spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006448': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006448', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006448', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007716', 'children': [], 'synonymLabels': ['first lumbar spinal cord segment', 'L1 segment', 'L1 spinal cord segment', 'L1 segment of lumbar spinal cord'], 'label': 'l1 lumbar spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006449': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006449', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006449', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007716', 'children': [], 'synonymLabels': ['L3 segment', 'L3 spinal cord segment', 'third lumbar spinal cord segment', 'L3 segment of lumbar spinal cord'], 'label': 'l3 lumbar spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006450': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006450', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006450', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007716', 'children': [], 'synonymLabels': ['l2 segment', 'L2 spinal cord segment', 'second lumbar spinal cord segment', 'L2 segment of lumbar spinal cord'], 'label': 'l2 lumbar spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006451', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006451', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007716', 'children': [], 'synonymLabels': ['fourth lumbar spinal cord segment', 'L4 segment', 'L4 spinal cord segment', 'L4 segment of lumbar spinal cord'], 'label': 'l4 lumbar spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006452', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006452', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T4 spinal cord segment', 'fourth thoracic spinal cord segment', 'T4 segment', 'T4 segment of spinal cord', 'T4 segment of thoracic spinal cord'], 'label': 't4 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006453', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006453', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T5 segment of thoracic spinal cord', 'fifth thoracic spinal cord segment', 't5 segment', 'T5 spinal cord segment'], 'label': 't5 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006454': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006454', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006454', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T6 segment of thoracic spinal cord', 'sixth thoracic spinal cord segment', 't6 segment', 'T6 spinal cord segment'], 'label': 't6 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006455': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006455', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006455', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T7 segment of thoracic spinal cord', 'seventh thoracic spinal cord segment', 't7 segment', 'T7 spinal cord segment'], 'label': 't7 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006456': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006456', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006456', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T8 segment of thoracic spinal cord', 'eighth thoracic spinal cord segment', 't8 segment', 'T8 spinal cord segment'], 'label': 't8 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006457': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006457', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006457', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T1 segment of thoracic spinal cord', 'first thoracic spinal cord segment', 't1 segment', 'T1 spinal cord segment'], 'label': 't1 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006458': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006458', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006458', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T2 segment of thoracic spinal cord', 'second thoracic spinal cord segment', 't2 segment', 'T2 spinal cord segment'], 'label': 't2 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006459': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006459', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006459', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T3 segment of thoracic spinal cord', 't3 segment', 'T3 spinal cord segment', 'third thoracic spinal cord segment'], 'label': 't3 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006460', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006460', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007717', 'children': [], 'synonymLabels': ['S1 segment of sacral spinal cord', 'first sacral spinal cord segment', 'S1 segment', 'S1 spinal cord segment'], 'label': 's1 sacral spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006461': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006461', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006461', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007717', 'children': [], 'synonymLabels': ['S2 segment of sacral spinal cord', 'S2 segment', 'S2 spinal cord segment', 'second sacral spinal cord segment'], 'label': 's2 sacral spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006462': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006462', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006462', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007717', 'children': [], 'synonymLabels': ['S3 segment of sacral spinal cord', 'S3 segment', 'S3 spinal cord segment', 'third sacral spinal cord segment'], 'label': 's3 sacral spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006463': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006463', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006463', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007717', 'children': [], 'synonymLabels': ['S4 segment of sacral spinal cord', 'fourth sacral spinal cord segment', 'S4 segment', 'S4 spinal cord segment'], 'label': 's4 sacral spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006464': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006464', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006464', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007717', 'children': [], 'synonymLabels': ['S5 segment of sacral spinal cord', 'fifth sacral spinal cord segment', 'S5 segment', 'S5 spinal cord segment'], 'label': 's5 sacral spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006465': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006465', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006465', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T9 segment of thoracic spinal cord', 'ninth thoracic spinal cord segment', 't9 segment', 'T9 spinal cord segment'], 'label': 't9 segment of thoracic spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006466': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006466', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006466', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T10 segment of thoracic spinal cord', 't10 segment', 'T10 spinal cord segment', 'tenth thoracic spinal cord segment'], 'label': 't10 thoracic spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006467': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006467', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006467', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T11 segment of thoracic spinal cord', 'eleventh thoracic spinal cord segment', 't11 segment', 'T11 spinal cord segment'], 'label': 't11 thoracic spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006468': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006468', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006468', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'children': [], 'synonymLabels': ['T12 segment of thoracic spinal cord', 't12 segment', 'T12 spinal cord segment', 'twelfth thoracic spinal cord segment'], 'label': 't12 thoracic spinal cord segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006469': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006469', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006469', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C1 segment of cervical spinal cord', 'C1 cervical spinal cord', 'C1 segment', 'C1 spinal cord segment', 'first cervical spinal cord segment'], 'label': 'c1 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006470': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006470', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006470', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C8 segment of cervical spinal cord', 'C8 segment', 'C8 spinal cord segment', 'eighth cervical spinal cord segment'], 'label': 'c8 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006488', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006488', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C3 segment of cervical spinal cord', 'C3 segment', 'C3 spinal cord segment', 'third cervical spinal cord segment'], 'label': 'c3 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006489': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006489', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006489', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C2 segment of cervical spinal cord', 'C2 segment', 'C2 spinal cord segment', 'second cervical spinal cord segment'], 'label': 'c2 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006490': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006490', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006490', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C4 segment of cervical spinal cord', 'C4 segment', 'C4 spinal cord segment', 'forth cervical spinal cord segment'], 'label': 'c4 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006491': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006491', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006491', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C5 segment of cervical spinal cord', 'C5 segment', 'C5 spinal cord segment', 'fifth cervical spinal cord segment'], 'label': 'c5 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006492', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C6 segment of cervical spinal cord', 'C6 segment', 'C6 spinal cord segment', 'sixth cervical spinal cord segment'], 'label': 'c6 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006493': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006493', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006493', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'children': [], 'synonymLabels': ['C7 segment', 'C7 spinal cord segment', 'seventh cervical spinal cord segment', 'C7 segment of cervical spinal cord'], 'label': 'c7 segment of cervical spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006544': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006544', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006544', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002113', 'children': ['http://purl.obolibrary.org/obo/UBERON_0034884', 'http://purl.obolibrary.org/obo/UBERON_0003517', 'http://purl.obolibrary.org/obo/UBERON_0003527', 'https://purl.org/ccf/ASCTB-TEMP_kidney-lymphatic-vessel'], 'synonymLabels': ['kidney vasculature'], 'label': 'vessels'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006564': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006564', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006564', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001410', 'http://purl.org/sig/ont/fma/fma22854', 'http://purl.org/sig/ont/fma/fma85108', 'http://purl.org/sig/ont/fma/fma22855', 'http://purl.org/sig/ont/fma/fma85107'], 'synonymLabels': ['superficial palmar arterial arch', 'arcus palmaris superficialis'], 'label': 'superficial palmar arch'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006566': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006566', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006566', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': [], 'synonymLabels': ['left ventricular myocardium', 'myocardium of left ventricle', 'left ventricle myocardium'], 'label': 'myocardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006567': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006567', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006567', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002080', 'children': [], 'synonymLabels': ['myocardium of right ventricle', 'right ventricular myocardium', 'right ventricle myocardium'], 'label': 'myocardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006632', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006632', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': ['http://purl.org/sig/ont/fma/fma10649', 'http://purl.org/sig/ont/fma/fma10650', 'http://purl.org/sig/ont/fma/fma10651'], 'synonymLabels': ['musculo-phrenic artery'], 'label': 'musculophrenic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006633': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006633', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006633', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['coracoid process', 'coracoid process of the scapula'], 'label': 'coracoid process of scapula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006634': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006634', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006634', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': ['http://purl.org/sig/ont/fma/fma50830', 'http://purl.org/sig/ont/fma/fma50826', 'http://purl.org/sig/ont/fma/fma50836'], 'synonymLabels': [], 'label': 'lingual vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-3'], 'synonymLabels': ['lumbar arterial tree'], 'label': 'lumbar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006644', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary', 'children': [], 'synonymLabels': ['overay tunica albuginea', 'tunica albuginea ovarii'], 'label': 'tunica albuginea of ovary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006656': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006656', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006656', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': [], 'label': 'deep dorsal vein of penis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006662': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006662', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006662', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': ['http://purl.org/sig/ont/fma/fma4736', 'http://purl.org/sig/ont/fma/fma4737', 'http://purl.org/sig/ont/fma/fma4738'], 'synonymLabels': ['musculo-phrenic vein'], 'label': 'musculophrenic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006663': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006663', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006663', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': ['http://purl.org/sig/ont/fma/fma4962', 'http://purl.org/sig/ont/fma/fma4949', 'http://purl.org/sig/ont/fma/fma4969', 'http://purl.obolibrary.org/obo/UBERON_0035252'], 'synonymLabels': ['hemi-azygos vein', 'hemiazygous vein', 'inferior hemi-azygos vein', 'vena hemiazygos'], 'label': 'hemiazygos vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006664': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006664', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006664', 'parent': 'http://purl.org/sig/ont/fma/fma49791', 'children': [], 'synonymLabels': ['major palatine artery'], 'label': 'greater palatine artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006665': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006665', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001592', 'http://purl.org/sig/ont/fma/fma4837', 'http://purl.org/sig/ont/fma/fma5004', 'http://purl.org/sig/ont/fma/fma4997', 'http://purl.org/sig/ont/fma/fma4990', 'http://purl.org/sig/ont/fma/fma4983', 'http://purl.org/sig/ont/fma/fma4976'], 'synonymLabels': ['accessory hemi-azygos vein', 'superior hemi-azygos vein', 'vena azygos accessoria', 'vena hemiazygos accessoria'], 'label': 'accessory hemiazygos vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006666': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006666', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006666', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005481', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035530', 'http://purl.obolibrary.org/obo/UBERON_0035152'], 'synonymLabels': ['great cerebral vein of Galen', 'vein of Galen'], 'label': 'great cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006679', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006679', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003604', 'children': [], 'synonymLabels': ['carina tracheae', 'tracheal carina'], 'label': 'carina of trachea'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006680': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006680', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006680', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003387', 'children': [], 'synonymLabels': ['tracheal muscle', 'trachealis muscle'], 'label': 'trachealis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006687': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006687', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006687', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001139', 'children': [], 'synonymLabels': [], 'label': 'median sacral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006690': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006690', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006690', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': ['http://purl.org/sig/ont/fma/fma6646'], 'synonymLabels': [], 'label': 'deep dorsal vein of clitoris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006718': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006718', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006718', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003681', 'children': [], 'synonymLabels': ['musculus pterygoideus internus', 'musculus pterygoideus medialis', 'pterygoid medialis', 'pterygoideus medial', 'pterygoideus medialis'], 'label': 'medial pterygoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006719': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006719', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006719', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003681', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-head-of-lateral-pterygoid-muscle', 'https://purl.org/ccf/ASCTB-TEMP_superior-head-of-lateral-pterygoid-muscle'], 'synonymLabels': ['external pterygoid muscle', 'lateral pteregoid', 'lateral pteregoid muscle', 'lateral pterygoid', 'm. pterygoideus externus', 'm. pterygoideus lateralis', 'musculus pterygoides lateralis', 'musculus pterygoideus externus', 'musculus pterygoideus lateralis', 'pterygoideus externus', 'pterygoideus externus muscle', 'pterygoideus lateral', 'pterygoideus lateral muscle'], 'label': 'lateral pterygoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006729': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006729', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006729', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': [], 'synonymLabels': ['liver perisinusoidal space', \"Disse's space\", 'hepatic perisinusoidal space', 'perisinusoidal space of Disse', 'space of Disse', 'spatium perisinusoideum'], 'label': \"disse's space\"}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006761', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002276', 'children': [], 'synonymLabels': ['cornea limbus', 'corneal limbus', 'corneal-scleral limbus', 'corneoscleral junction', 'limbus corneae', 'sclerocorneal junction', 'sclerocorneal limbus', 'corneo-scleral junction'], 'label': 'corneoscleral limbus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006762': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006762', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006762', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000965', 'children': [], 'synonymLabels': ['ciliary zonule', \"Zinn's membrane\", 'zonule of Zinn', 'zonules', 'suspensory ligament of lens'], 'label': 'ciliary zonules'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006764': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006764', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006764', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'anterior communicating artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006767': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006767', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006767', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['acetabular head', 'femoral head', 'kopf des Schenkelbeins'], 'label': 'head of femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006805', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006805', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['extremitas sternalis (clavicula)', 'extremitas sternalis claviculae', 'medial end of clavicle'], 'label': 'sternal end of clavicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006838': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006838', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005476', 'children': ['http://purl.org/sig/ont/fma/fma7072', 'http://purl.org/sig/ont/fma/fma8724', 'http://purl.org/sig/ont/fma/fma8608', 'http://purl.org/sig/ont/fma/fma8611', 'http://purl.org/sig/ont/fma/fma8733', 'http://purl.org/sig/ont/fma/fma8773', 'http://purl.org/sig/ont/fma/fma8785', 'http://purl.org/sig/ont/fma/fma8605', 'http://purl.org/sig/ont/fma/fma7061', 'http://purl.org/sig/ont/fma/fma7065', 'http://purl.org/sig/ont/fma/fma7068', 'http://purl.org/sig/ont/fma/fma7645', 'http://purl.org/sig/ont/fma/fma8739', 'http://purl.org/sig/ont/fma/fma8770', 'http://purl.org/sig/ont/fma/fma8782', 'http://purl.org/sig/ont/fma/fma8604', 'http://purl.org/sig/ont/fma/fma8609', 'http://purl.org/sig/ont/fma/fma7062', 'http://purl.org/sig/ont/fma/fma8764', 'http://purl.org/sig/ont/fma/fma8776', 'http://purl.org/sig/ont/fma/fma8602', 'http://purl.org/sig/ont/fma/fma8727', 'http://purl.org/sig/ont/fma/fma8607', 'http://purl.org/sig/ont/fma/fma8730', 'http://purl.org/sig/ont/fma/fma8606', 'http://purl.org/sig/ont/fma/fma8610', 'http://purl.org/sig/ont/fma/fma8736', 'http://purl.org/sig/ont/fma/fma8767', 'http://purl.org/sig/ont/fma/fma8779', 'http://purl.org/sig/ont/fma/fma8603', 'http://purl.org/sig/ont/fma/fma65567'], 'synonymLabels': ['anterior primary ramus of spinal nerve', 'anterior ramus of spinal nerve'], 'label': 'ventral ramus of spinal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006839', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005476', 'children': ['http://purl.org/sig/ont/fma/fma8855', 'http://purl.org/sig/ont/fma/fma8802', 'http://purl.org/sig/ont/fma/fma8816', 'http://purl.org/sig/ont/fma/fma8825', 'http://purl.org/sig/ont/fma/fma8793', 'http://purl.org/sig/ont/fma/fma8840', 'http://purl.org/sig/ont/fma/fma8852', 'http://purl.org/sig/ont/fma/fma8806', 'http://purl.org/sig/ont/fma/fma7054', 'http://purl.org/sig/ont/fma/fma7053', 'http://purl.org/sig/ont/fma/fma7079', 'http://purl.org/sig/ont/fma/fma7075', 'http://purl.org/sig/ont/fma/fma8789', 'http://purl.org/sig/ont/fma/fma8837', 'http://purl.org/sig/ont/fma/fma8849', 'http://purl.org/sig/ont/fma/fma8809', 'http://purl.org/sig/ont/fma/fma8819', 'http://purl.org/sig/ont/fma/fma8788', 'http://purl.org/sig/ont/fma/fma8831', 'http://purl.org/sig/ont/fma/fma8843', 'http://purl.org/sig/ont/fma/fma7076', 'http://purl.org/sig/ont/fma/fma8799', 'http://purl.org/sig/ont/fma/fma8813', 'http://purl.org/sig/ont/fma/fma8796', 'http://purl.org/sig/ont/fma/fma8810', 'http://purl.org/sig/ont/fma/fma8822', 'http://purl.org/sig/ont/fma/fma8792', 'http://purl.org/sig/ont/fma/fma8834', 'http://purl.org/sig/ont/fma/fma8846', 'http://purl.org/sig/ont/fma/fma6142', 'http://purl.org/sig/ont/fma/fma8828'], 'synonymLabels': ['posterior primary ramus', 'posterior ramus of spinal nerve', 'ramus posterior nervi spinalis'], 'label': 'dorsal ramus of spinal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006841': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006841', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006841', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': [], 'synonymLabels': ['central vein of liver', 'terminal branch of hepatic vein', 'terminal hepatic venule', 'vena centralis (hepar)'], 'label': 'central vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006842': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006842', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006842', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410066', 'children': [], 'synonymLabels': ['lymphatic capillary', 'lymph capillary'], 'label': 'capillaries of lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006849', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007829', 'children': ['https://purl.org/ccf/ASCTB-TEMP_acromial-process-of-scapula', 'http://purl.org/sig/ont/fma/fma23303', 'http://purl.obolibrary.org/obo/UBERON_0006633', 'https://purl.org/ccf/ASCTB-TEMP_glenoid-fossa-of-scapula', 'http://purl.obolibrary.org/obo/UBERON_0007175', 'https://purl.org/ccf/ASCTB-TEMP_infraglenoid-tubercle-of-scapula', 'https://purl.org/ccf/ASCTB-TEMP_infraspinous-fossa-of-scapula', 'http://purl.obolibrary.org/obo/UBERON_0007173', 'http://purl.obolibrary.org/obo/UBERON_0007174', 'https://purl.org/ccf/ASCTB-TEMP_scapular-neck-of-scapula', 'https://purl.org/ccf/ASCTB-TEMP_scapular-notch-of-scapula', 'https://purl.org/ccf/ASCTB-TEMP_scapular-spine-of-scapula', 'https://purl.org/ccf/ASCTB-TEMP_subscapular-fossa-of-scapula', 'http://purl.obolibrary.org/obo/UBERON_0007176', 'http://purl.org/sig/ont/fma/fma296241', 'https://purl.org/ccf/ASCTB-TEMP_supraglenoid-tubercle-of-scapula', 'https://purl.org/ccf/ASCTB-TEMP_supraspinous-fossa-of-scapula'], 'synonymLabels': ['scapulae'], 'label': 'scapula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006922': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006922', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006922', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004801', 'children': [], 'synonymLabels': ['cervical squamous epithelium'], 'label': 'cervix squamous epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006936': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006936', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006936', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003846', 'children': [], 'synonymLabels': [], 'label': 'thymus subcapsular epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006958': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006958', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006958', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005438', 'children': [], 'synonymLabels': ['great vein of heart'], 'label': 'great cardiac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0006960': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0006960', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0006960', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003315'], 'synonymLabels': ['interstitial tissue of ovary', 'ovarian stroma', 'stroma of the ovary', 'stroma ovarica'], 'label': 'ovary stroma'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007119': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007119', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007119', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['femoral neck'], 'label': 'neck of femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007121': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007121', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007121', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['skin nerve field'], 'label': 'nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007146': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007146', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007146', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001535', 'children': [], 'synonymLabels': ['dorsal spinal artery'], 'label': 'posterior spinal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007149': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007149', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007149', 'parent': 'http://purl.org/sig/ont/fma/fma3990', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012322', 'http://purl.org/sig/ont/fma/fma52492', 'http://purl.org/sig/ont/fma/fma71523', 'http://purl.org/sig/ont/fma/fma71525'], 'synonymLabels': [], 'label': 'inferior thyroid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007150': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007150', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007150', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001070', 'children': ['http://purl.org/sig/ont/fma/fma49483', 'http://purl.obolibrary.org/obo/UBERON_0005608', 'http://purl.org/sig/ont/fma/fma49480'], 'synonymLabels': [], 'label': 'superior thyroid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007152': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007152', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007152', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005481', 'children': [], 'synonymLabels': [], 'label': 'inferior sagittal sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007153': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007153', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007153', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': [], 'label': 'superior epigastric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007154': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007154', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007154', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001316', 'children': [], 'synonymLabels': [], 'label': 'inferior epigastric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007155': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007155', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007155', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': [], 'label': 'superior epigastric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007156': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007156', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007156', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': ['http://purl.org/sig/ont/fma/fma50800'], 'synonymLabels': ['inferior thyroid venous tree', 'vena thyroidea inferioris'], 'label': 'inferior thyroid vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007157', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007157', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': ['https://purl.org/ccf/ASCTB-TEMP_glandular-venous-plexus', 'http://purl.org/sig/ont/fma/fma14324'], 'synonymLabels': [], 'label': 'superior thyroid vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007160': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007160', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007160', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003712'], 'synonymLabels': ['sinus petrosal inferior'], 'label': 'inferior petrosal sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007173', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007173', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['axillary border of scapula', 'margo lateralis (scapula)', 'margo lateralis scapulae'], 'label': 'lateral border of scapula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007174': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007174', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007174', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['margo medialis (scapula)', 'margo medialis scapulae', 'medial part of scapula', 'vertebral border of scapula'], 'label': 'medial border of scapula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007175', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007175', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['angulus inferior (scapula)', 'angulus inferior scapulae'], 'label': 'inferior angle of scapula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007176': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007176', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007176', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['angulus superior (scapula)', 'angulus superior scapulae', 'medial angle of scapula', 'superior medial angle of scapula'], 'label': 'superior angle of scapula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007177': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007177', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007177', 'parent': '', 'children': [], 'synonymLabels': ['colonic lamina propria', 'lamina propria mucosae of colon', 'lamina propria of colonic mucosa', 'lamina propria of colonic mucous membrane', 'lamina propria of mucosa of colon'], 'label': 'lamina propria'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007178': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007178', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007178', 'parent': '', 'children': [], 'synonymLabels': ['lamina muscularis of colonic mucosa', 'lamina muscularis of colonic mucous membrane', 'muscularis mucosa of colon', 'muscularis mucosae of colon'], 'label': 'muscularis mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007180': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007180', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007180', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000155'], 'synonymLabels': ['atretic follicle', 'folliculus atreticus (ovarium)'], 'label': 'atretic follicle of ovary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007196', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001558', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600017', 'http://purl.obolibrary.org/obo/UBERON_0002185', 'http://purl.obolibrary.org/obo/UBERON_0002009', 'http://purl.obolibrary.org/obo/UBERON_0002183', 'http://purl.obolibrary.org/obo/UBERON_0002184'], 'synonymLabels': ['arbor tracheobronchialis'], 'label': 'tracheobronchial tree'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007228', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007228', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003023', 'children': [], 'synonymLabels': ['vestibular nucleus of acoustic nerve', 'vestibular nucleus of eighth cranial nerve', 'vestibular VIII nucleus', 'vestibular nucleus'], 'label': 'vestibular nuclei'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007315', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'parent': 'http://purl.org/sig/ont/fma/fma69797', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008320', 'http://purl.obolibrary.org/obo/UBERON_0008322', 'http://purl.obolibrary.org/obo/UBERON_0008323', 'http://purl.obolibrary.org/obo/UBERON_0001357', 'http://purl.obolibrary.org/obo/UBERON_0001358', 'http://purl.org/sig/ont/fma/fma20886', 'http://purl.org/sig/ont/fma/fma20853', 'http://purl.obolibrary.org/obo/UBERON_0034727'], 'synonymLabels': ['internal pudic artery', 'arteria pudenda interna', 'arteriae pudendae interna', 'arteriae pudendales interna'], 'label': 'internal pudendal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007316', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007316', 'parent': 'http://purl.org/sig/ont/fma/fma0323778', 'children': [], 'synonymLabels': ['arteria pudenda externa profunda', 'arteriae pudendae externa profunda', 'arteriae pudendales externa profunda'], 'label': 'deep external pudendal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007317', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007317', 'parent': 'http://purl.org/sig/ont/fma/fma0323778', 'children': [], 'synonymLabels': ['superficial external pudic artery', 'arteriae pudendae externa superficialis', 'arteriae pudendales externa superficialis'], 'label': 'superficial external pudendal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007324', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007324', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001069', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001978', 'http://purl.obolibrary.org/obo/UBERON_0018234'], 'synonymLabels': ['lobulus pancreaticus', 'pancreas lobe', 'pancreatic lobule'], 'label': 'pancreas lobule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007329', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000017', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001064'], 'synonymLabels': ['pancreatic duct', 'duct of pancreas', 'pancreas duct'], 'label': 'pancreatic ductal tree'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007589': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007589', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007589', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004804', 'children': [], 'synonymLabels': [], 'label': 'ciliated columnar oviduct epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007590': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007590', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007590', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004804', 'children': [], 'synonymLabels': [], 'label': 'cuboidal oviduct epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007614': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007614', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007614', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': [], 'label': 'extensor digiti minimi muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007634': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007634', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007634', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003023', 'children': [], 'synonymLabels': ['parabrachial nucleus'], 'label': 'parabrachial nuclei'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007693': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007693', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007693', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': [], 'synonymLabels': [], 'label': 'caroticotympanic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007711', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007711', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002834', 'children': [], 'synonymLabels': ['C6 dorsal root ganglion', 'sixth cervical dorsal root ganglia', 'sixth cervical spinal ganglion'], 'label': 'sixth cervical dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007712': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007712', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007712', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002835', 'children': [], 'synonymLabels': ['fourth thoracic spinal ganglion'], 'label': 'fourth thoracic dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007713': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007713', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007713', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002837', 'children': [], 'synonymLabels': ['forth sacral dorsal root ganglion', 'fourth sacral spinal ganglion'], 'label': 'fourth sacral dorsal root ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007714', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007714', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006469', 'http://purl.obolibrary.org/obo/UBERON_0006489', 'http://purl.obolibrary.org/obo/UBERON_0006488', 'http://purl.obolibrary.org/obo/UBERON_0006490', 'http://purl.obolibrary.org/obo/UBERON_0006491', 'http://purl.obolibrary.org/obo/UBERON_0006492', 'http://purl.obolibrary.org/obo/UBERON_0006493', 'http://purl.obolibrary.org/obo/UBERON_0006470'], 'synonymLabels': ['segment part of cervical spinal cord'], 'label': 'cervical subsegment of spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007715', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007715', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006457', 'http://purl.obolibrary.org/obo/UBERON_0006466', 'http://purl.obolibrary.org/obo/UBERON_0006467', 'http://purl.obolibrary.org/obo/UBERON_0006468', 'http://purl.obolibrary.org/obo/UBERON_0006458', 'http://purl.obolibrary.org/obo/UBERON_0006459', 'http://purl.obolibrary.org/obo/UBERON_0006452', 'http://purl.obolibrary.org/obo/UBERON_0006453', 'http://purl.obolibrary.org/obo/UBERON_0006454', 'http://purl.obolibrary.org/obo/UBERON_0006455', 'http://purl.obolibrary.org/obo/UBERON_0006456', 'http://purl.obolibrary.org/obo/UBERON_0006465'], 'synonymLabels': ['segment part of thoracic spinal cord'], 'label': 'thoracic subsegment of spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007716', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007716', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002792', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006448', 'http://purl.obolibrary.org/obo/UBERON_0006450', 'http://purl.obolibrary.org/obo/UBERON_0006449', 'http://purl.obolibrary.org/obo/UBERON_0006451', 'http://purl.obolibrary.org/obo/UBERON_0006447'], 'synonymLabels': ['segment part of lumbar spinal cord'], 'label': 'lumbar subsegment of spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007717': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007717', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007717', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006460', 'http://purl.obolibrary.org/obo/UBERON_0006461', 'http://purl.obolibrary.org/obo/UBERON_0006462', 'http://purl.obolibrary.org/obo/UBERON_0006463', 'http://purl.obolibrary.org/obo/UBERON_0006464'], 'synonymLabels': ['segment part of sacral spinal cord'], 'label': 'sacral subsegment of spinal cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007769': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007769', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007769', 'parent': '', 'children': [], 'synonymLabels': ['medial preoptic area', 'medial preoptic region'], 'label': 'preoptic region'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007798', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007798', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002367', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004572', 'http://purl.obolibrary.org/obo/UBERON_0004582'], 'synonymLabels': [], 'label': 'vascular system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007829': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007829', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007829', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003460', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001105', 'http://purl.obolibrary.org/obo/UBERON_0006849'], 'synonymLabels': ['bone of pectoral girdle'], 'label': 'pectoral girdle bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007830', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007830', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005893', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001272'], 'synonymLabels': ['bone of pelvic girdle', 'pelvic girdle bone'], 'label': 'pelvic girdle bone/zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007834', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007834', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0029636', 'children': [], 'synonymLabels': ['lumbar spinal cord anterior commissure'], 'label': 'lumbar spinal cord ventral commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007835': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007835', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007835', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': ['sacral spinal cord anterior commissure'], 'label': 'sacral spinal cord ventral commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007836': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007836', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007836', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': ['cervical spinal cord anterior commissure'], 'label': 'cervical spinal cord ventral commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0007837': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0007837', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0007837', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': ['thoracic spinal cord anterior commissure'], 'label': 'thoracic spinal cord ventral commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008198', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008198', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001003', 'children': [], 'synonymLabels': [], 'label': 'nail plate'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008320', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': ['https://purl.org/ccf/ASCTB-TEMP_bulbourethral-artery', 'https://purl.org/ccf/ASCTB-TEMP_cavernosal-artery', 'http://purl.obolibrary.org/obo/UBERON_0008321', 'http://purl.obolibrary.org/obo/UBERON_0001340'], 'synonymLabels': [], 'label': 'common penile artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008321', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008320', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015174'], 'synonymLabels': ['arteria profunda penis', 'deep penile artery'], 'label': 'deep artery of penis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': [], 'synonymLabels': [], 'label': 'deep artery of clitoris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008323': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008323', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008323', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': [], 'synonymLabels': [], 'label': 'dorsal artery of clitoris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008345': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008345', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008345', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000331', 'children': [], 'synonymLabels': ['epithelium of ileum', 'ileal epithelium'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008346': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008346', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008346', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000320', 'children': [], 'synonymLabels': ['duodenal epithelium', 'epithelium of duodenum'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008446': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008446', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008446', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': [], 'synonymLabels': [], 'label': 'flexor pollicis longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008454': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008454', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008454', 'parent': 'http://purl.org/sig/ont/fma/fma71439', 'children': [], 'synonymLabels': ['greater posterior rectus capitis', 'rectus capitis posterior major'], 'label': 'rectus capitis posterior major muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008464': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008464', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008464', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': [], 'label': 'abductor hallucis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008465': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008465', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008465', 'parent': 'http://purl.org/sig/ont/fma/fma321805', 'children': [], 'synonymLabels': [], 'label': 'abductor pollicis brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008488', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008488', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_spermatic-cord-muscle', 'children': [], 'synonymLabels': ['cremaster', 'muscle of Riolan (cremaster)', 'musculus cremaster <male>'], 'label': 'cremaster muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008521': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008521', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008521', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['gluteus minimus'], 'label': 'gluteus minimus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008523': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008523', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008523', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001108', 'http://purl.obolibrary.org/obo/UBERON_0001107', 'http://purl.obolibrary.org/obo/UBERON_0001109', 'http://purl.obolibrary.org/obo/UBERON_0001110'], 'synonymLabels': ['musculus infrahyoideus'], 'label': 'infrahyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008529': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008529', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008529', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['m.piriformis', 'piriformis'], 'label': 'piriformis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008571': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008571', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008571', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.org/sig/ont/fma/fma46291', 'http://purl.obolibrary.org/obo/UBERON_0001565', 'http://purl.obolibrary.org/obo/UBERON_0001564', 'http://purl.obolibrary.org/obo/UBERON_0008712'], 'synonymLabels': [], 'label': 'suprahyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008572': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008572', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008572', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': [], 'synonymLabels': ['posterior cricoarytenoid', 'posterior cricoarytenoideus', 'posterior crico-arytenoid'], 'label': 'posterior cricoarytenoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008573': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008573', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008573', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': [], 'synonymLabels': ['lateral cricoarytenoid', 'lateral cricoarytenoideus', 'lateral crico-arytenoid'], 'label': 'lateral cricoarytenoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008577': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008577', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008577', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': [], 'synonymLabels': ['vocal muscle', 'vocalis'], 'label': 'vocalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008586': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008586', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008586', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003682', 'children': [], 'synonymLabels': ['tensor veli palatini'], 'label': 'tensor veli palatini muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008593': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008593', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008593', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['zygomatic muscle'], 'label': 'zygomaticus major muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008594': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008594', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008594', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['musculus quadratus labii superioris, zygomatic head', 'musculus zygomaticus minor', 'square muscle of the upper lip, zygomatic head'], 'label': 'zygomaticus minor muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008595': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008595', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008595', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['levator anguli oris'], 'label': 'levator anguli oris muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008596': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008596', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008596', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['mentalis', 'musculus mentalis'], 'label': 'mentalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008597': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008597', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008597', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': [], 'label': 'depressor anguli oris muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008598': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008598', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008598', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['musculus risorius', 'risorius'], 'label': 'risorius muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008609': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008609', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008609', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['transverse menti'], 'label': 'transversus menti muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008617': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008617', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008617', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'children': [], 'synonymLabels': [], 'label': 'innermost intercostal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008618', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008618', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'children': [], 'synonymLabels': [], 'label': 'subcostal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008712': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008712', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008712', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008571', 'children': [], 'synonymLabels': [], 'label': 'stylohyoid muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008783': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008783', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008783', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001547', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001549'], 'synonymLabels': ['arcus venosus dorsalis pedis', 'dorsal venous arch of foot', 'dorsal venous arch'], 'label': 'dorsal venous arch of foot #2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008804', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008804', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle', 'children': [], 'synonymLabels': ['stylopharyngeus'], 'label': 'stylopharyngeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008810': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008810', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008810', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': [\"Scarpa's nerve\"], 'label': 'nasopalatine nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008833': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008833', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008833', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003725', 'children': ['http://purl.org/sig/ont/fma/fma6880', 'http://purl.org/sig/ont/fma/fma6881'], 'synonymLabels': ['nervus auricularis magnus'], 'label': 'great auricular nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008847', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008847', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': [], 'synonymLabels': ['ligament of ovary', 'ligamentum ovarii proprium', 'proper ovarian ligament'], 'label': 'ovarian ligament'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008870': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008870', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008870', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002299', 'children': [], 'synonymLabels': [], 'label': 'pulmonary alveolar parenchyma'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008874': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008874', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008874', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002187', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002188'], 'synonymLabels': ['acinus pulmonaris', 'arbor alveolaris', 'pulmonary acini'], 'label': 'pulmonary acinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008889': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008889', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008889', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': [], 'synonymLabels': ['uterine venous plexus'], 'label': 'uterine venous plexsus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008895': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008895', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008895', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004766', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005922', 'http://purl.obolibrary.org/obo/UBERON_0001680', 'http://purl.obolibrary.org/obo/UBERON_0001684', 'http://purl.obolibrary.org/obo/UBERON_0002397', 'http://purl.obolibrary.org/obo/UBERON_0001681', 'http://purl.obolibrary.org/obo/UBERON_0001682', 'http://purl.obolibrary.org/obo/UBERON_0002396', 'http://purl.obolibrary.org/obo/UBERON_0001683'], 'synonymLabels': ['pharyngeal endoskeleton', 'viscerocranium'], 'label': 'splanchnocranium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008974': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008974', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008974', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['true apocrine gland', 'apocrine glands'], 'label': 'apocrine gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0008993': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0008993', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0008993', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001899', 'children': [], 'synonymLabels': ['habenular nucleus'], 'label': 'habenular nuclei'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009006', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015880', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001543'], 'synonymLabels': ['deep inguinal node', 'femoral lymph node', 'nodus lymphaticus inguinalis profundus'], 'label': 'deep inguinal lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['carotid branch of glossopharyngeal nerve', 'Hering sinus nerve', 'ramus sinus carotici', 'ramus sinus carotici nervi glossopharyngei', 'ramus sinus carotici nervus glossopharyngei', 'sinus nerve of Hering'], 'label': 'carotid sinus nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009039', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010753', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410053', 'http://purl.obolibrary.org/obo/UBERON_8410052', 'http://purl.obolibrary.org/obo/UBERON_0010420'], 'synonymLabels': ['lymph node germinal center'], 'label': 'germinal center'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009040', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001308', 'children': [], 'synonymLabels': ['arteria circumflexa ilium profunda'], 'label': 'deep circumflex iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009041', 'parent': 'http://purl.org/sig/ont/fma/fma0323778', 'children': [], 'synonymLabels': ['arteria circumflexa ilium superficialis'], 'label': 'superficial circumflex iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009042', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001318', 'children': ['https://purl.org/ccf/ASCTB-TEMP_prostatic-venule'], 'synonymLabels': [], 'label': 'prostatic venous plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009048', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009048', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': ['vena pudendae externalis profunda', 'vena pudendales externalis profunda'], 'label': 'deep external pudendal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009049', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009049', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': ['vena pudendae externalis superficialis', 'vena pudendales externalis superficialis'], 'label': 'superficial external pudendal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009091', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004726', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001986'], 'synonymLabels': ['vasa recta ascending limb', 'ascending vasa recta of kidney'], 'label': 'ascending vasa recta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009095', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009095', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001228', 'children': ['https://purl.org/ccf/ASCTB-TEMP_papillary-tip-epithelium'], 'synonymLabels': ['papillary tips', 'tip of renal papilla'], 'label': 'papillary tip'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009127': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009127', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009127', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001714', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001700'], 'synonymLabels': ['epibranchial ganglia'], 'label': 'epibranchial ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009202', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009202', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001294', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004726'], 'synonymLabels': ['vasa recta descending limb', 'descending vasa recta of kidney'], 'label': 'descending vasa recta'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009623', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009623', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002211', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002260'], 'synonymLabels': ['root of spinal nerve', 'spinal neural root', 'spinal root'], 'label': 'spinal nerve root'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009624': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009624', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009624', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'children': ['http://purl.org/sig/ont/fma/fma6416', 'http://purl.org/sig/ont/fma/fma6172', 'http://purl.org/sig/ont/fma/fma6415', 'http://purl.org/sig/ont/fma/fma6176', 'http://purl.org/sig/ont/fma/fma6414'], 'synonymLabels': ['lumbar spinal nerve', 'nervus lumbalis'], 'label': 'lumbar nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009625': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009625', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009625', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'children': ['http://purl.org/sig/ont/fma/fma6427', 'http://purl.org/sig/ont/fma/fma6423', 'http://purl.org/sig/ont/fma/fma6426', 'http://purl.org/sig/ont/fma/fma6424', 'http://purl.org/sig/ont/fma/fma6425'], 'synonymLabels': ['nervus sacralis', 'sacral spinal nerve'], 'label': 'sacral nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003571', 'children': [], 'synonymLabels': [], 'label': 'trachea non-cartilage connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009654', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': [], 'label': 'alveolar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009675': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009675', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009675', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['chorda tympani', 'facial VII nerve chorda tympani branch', 'parasympathetic root of submandibular ganglion', 'radix parasympathica ganglii submandibularis'], 'label': 'chorda tympani branch of facial nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009687': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009687', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009687', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005438', 'children': [], 'synonymLabels': ['lesser cardiac vein', 'posterior interventricular vein'], 'label': 'middle cardiac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009688', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009688', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001535', 'children': [], 'synonymLabels': [], 'label': 'posterior inferior cerebellar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009689': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009689', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009689', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001633', 'children': ['http://purl.obolibrary.org/obo/UBERON_0018231'], 'synonymLabels': [], 'label': 'anterior inferior cerebellar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009708', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009708', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001264', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001150', 'http://purl.obolibrary.org/obo/UBERON_0001069', 'http://purl.obolibrary.org/obo/UBERON_0001151'], 'synonymLabels': [], 'label': 'dorsal pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009709': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009709', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009709', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001264', 'children': [], 'synonymLabels': [], 'label': 'ventral pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009744': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009744', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009744', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002007', 'children': [], 'synonymLabels': ['lymph node medullary sinus'], 'label': 'medullary sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009745': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009745', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009745', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002007', 'children': [], 'synonymLabels': ['lymph node medullary cord'], 'label': 'medullary cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009752': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009752', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009752', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018234', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000482'], 'synonymLabels': ['pancreas mesenchyme'], 'label': 'connective tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009853': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009853', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-anterior-body-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-body-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-body-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-body-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-body-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-body-of-uterus'], 'synonymLabels': ['corpus uteri', 'uterine body', 'uterine corpus'], 'label': 'body of uterus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009883': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009883', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009883', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001225', 'children': [], 'synonymLabels': [\"Ferrein's pyramid\", 'kidney medullary ray', 'renal medullary ray'], 'label': 'medullary ray'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009885': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009885', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009885', 'parent': 'http://purl.org/sig/ont/fma/fma70494', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001552'], 'synonymLabels': ['interlobar artery of kidney', 'kidney interlobar artery', 'renal interlobar artery', 'arteriae interlobares renis', 'interlobar artery'], 'label': 'interlobar renal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009887': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009887', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009887', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-renal-vein', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004719'], 'synonymLabels': ['interlobar vein of kidney', 'venae interlobares renis', 'interlobar vein'], 'label': 'interlobar renal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009919': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009919', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009919', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0036376', 'children': [], 'synonymLabels': ['ureter smooth muscle', 'ureteral smooth muscle', 'ureteral smooth muscle layer'], 'label': 'ureter detrusor smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009967': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009967', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009967', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001250', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ring-fiber', 'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stroma'], 'synonymLabels': ['sinus lienalis', 'sinus splenicus', 'splenic sinus', 'venous sinus of red pulp of spleen', 'spleen venous sinus'], 'label': 'splenic sinusoid'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009980': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009980', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009980', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001485', 'children': [], 'synonymLabels': ['condylus femoralis', 'condylus femoris', 'femoral condyle', 'condyle of femur'], 'label': 'distal femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009984': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009984', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009984', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010996'], 'synonymLabels': ['condylus medialis femoris', 'medial condyle of femur'], 'label': 'medial condyle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009985': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009985', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009985', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['condylus lateralis femoris', 'lateral condyle of femur'], 'label': 'lateral condyle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009986', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009986', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['epicondylus lateralis (femur)', 'epicondylus lateralis femoris'], 'label': 'lateral epicondyle of femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009987': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009987', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009987', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['epicondylus medialis (femur)'], 'label': 'medial epicondyle of femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009990', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': ['condylus medialis (tibia)', 'condylus medialis tibiae'], 'label': 'medial condyle of tibia'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0009991': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0009991', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0009991', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': ['condylus lateralis (tibia)', 'condylus lateralis tibiae'], 'label': 'lateral condyle of tibia'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010011', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001873', 'http://purl.obolibrary.org/obo/UBERON_0002476', 'http://purl.obolibrary.org/obo/UBERON_0002477', 'http://purl.obolibrary.org/obo/UBERON_0001882', 'http://purl.obolibrary.org/obo/UBERON_0001874'], 'synonymLabels': ['basal ganglia', 'basal ganglia set', 'set of basal ganglia', 'collection of basal ganglia'], 'label': 'basal nuclei (basal ganglia)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010132', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010132', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005436', 'children': ['http://purl.org/sig/ont/fma/fma61437', 'http://purl.obolibrary.org/obo/UBERON_0035829', 'http://purl.obolibrary.org/obo/UBERON_0002070', 'http://purl.org/sig/ont/fma/fma70438'], 'synonymLabels': [], 'label': 'gastroduodenal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010147': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010147', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010147', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000079', 'children': [], 'synonymLabels': [], 'label': 'male accessory sex gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010181': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010181', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010181', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005168', 'children': [], 'synonymLabels': ['set of straight venules of kidney', 'venulae rectae of kidney', 'venulae rectae renis', 'straight venules of kidney'], 'label': 'straight venule of kidney'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010185': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010185', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010185', 'parent': 'http://purl.org/sig/ont/fma/fma18652', 'children': [], 'synonymLabels': ['rete ovarii of ovary'], 'label': 'rete ovarii'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010234', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010234', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle', 'children': ['http://purl.org/sig/ont/fma/fma46683', 'http://purl.org/sig/ont/fma/fma46684'], 'synonymLabels': ['palatopharyngeal muscle', 'palatopharyngeus', 'pharyngopalatinus muscle'], 'label': 'palatopharyngeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010249', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010249', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', 'children': [], 'synonymLabels': ['terminal branch of ascending pharyngeal artery'], 'label': 'posterior meningeal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010250', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010250', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': [], 'label': 'middle meningeal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010251': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010251', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010251', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012318', 'children': [], 'synonymLabels': ['anterior meningeal branch of anterior ethmoidal artery', 'ramus meningeus anterior (arteria ethmoidalis anterioris)'], 'label': 'anterior meningeal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010369': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010369', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010369', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002048', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600022', 'http://purl.obolibrary.org/obo/UBERON_0002187'], 'synonymLabels': ['lobulus pulmonis secondarius'], 'label': 'secondary pulmonary lobule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010373': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010373', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010373', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001069', 'children': [], 'synonymLabels': ['lesser pancreas', 'processus uncinatus (pancreas)', \"Winslow's pancreas\", 'processus uncinatus pancreatis'], 'label': 'uncinate process of pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010379', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010379', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': [\"Mueller's muscle\"], 'label': 'superior tarsal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010395': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010395', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010395', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002006', 'children': [], 'synonymLabels': ['lymph node primary follicle', 'primary follicle of lymph node'], 'label': 'primary follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010396', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010396', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005463', 'children': [], 'synonymLabels': ['vasa afferentia lymphoglandula', 'vasa afferentia lymphoglandulae'], 'label': 'afferent lymphatic vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010397', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010397', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035495', 'children': [], 'synonymLabels': ['efferent lymphatic vessel', 'efferent lymphatics'], 'label': 'efferent lymphatic'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010399': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010399', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010399', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001265', 'children': [], 'synonymLabels': [], 'label': 'spleen trabecular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010400': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010400', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010400', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003713', 'children': ['https://purl.org/ccf/ASCTB-TEMP_red-pulp-venule-of-spleen'], 'synonymLabels': [], 'label': 'spleen trabecular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010401', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010401', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'children': ['https://purl.org/ccf/ASCTB-TEMP_non-penicillar-arteriole-of-spleen', 'http://purl.obolibrary.org/obo/UBERON_0013132', 'https://purl.org/ccf/ASCTB-TEMP_secondary-follicle-arteriole-of-spleen'], 'synonymLabels': ['follicular arteriole', 'splenic central arteriole'], 'label': 'spleen central arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010408': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010408', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010408', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['ocular angle artery'], 'label': 'angular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010420': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010420', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010420', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009039', 'children': [], 'synonymLabels': ['lymph node B cell corona', 'lymph node follicular corona', 'lymph node follicular mantle', 'lymph node inactive zone', 'lymph node peripheral zone', 'mantle zone of lymph node germinal center', 'lymph node germinal center mantle zone'], 'label': 'mantle zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010421': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010421', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010421', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004042', 'children': [], 'synonymLabels': ['follicle mantle', 'spleen B cell corona', 'spleen B-cell corona', 'spleen lymphocytic corona', 'splenic B cell corona'], 'label': 'mantle zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010423': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010423', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010423', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'children': [], 'synonymLabels': ['primary lymphoid nodule of tonsil'], 'label': 'primary nodular lymphoid tissue'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010496': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010496', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010496', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['teres minor'], 'label': 'teres minor muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010753': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010753', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010753', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002006', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009039'], 'synonymLabels': ['lymph node secondary follicle'], 'label': 'secondary follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010754': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010754', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010754', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-secondary-follicle', 'children': ['http://purl.obolibrary.org/obo/UBERON_0013688'], 'synonymLabels': ['central zone of follice', 'reaction center of follicle'], 'label': 'germinal center'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010757': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010757', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'children': ['http://purl.org/sig/ont/fma/fma8132', 'http://purl.org/sig/ont/fma/fma8130', 'http://purl.org/sig/ont/fma/fma8128', 'http://purl.org/sig/ont/fma/fma8135', 'http://purl.org/sig/ont/fma/fma8122', 'http://purl.org/sig/ont/fma/fma8121', 'http://purl.org/sig/ont/fma/fma8125', 'http://purl.org/sig/ont/fma/fma8126', 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-eighth-rib', 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eighth-rib', 'http://purl.org/sig/ont/fma/fma8124', 'http://purl.org/sig/ont/fma/fma8129'], 'synonymLabels': ['costa VIII', 'eighth rib'], 'label': 'rib 8'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010853': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010853', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010853', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['humeral capitulum'], 'label': 'capitulum of humerus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010911', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010911', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004766', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001688', 'http://purl.obolibrary.org/obo/UBERON_0001689', 'http://purl.obolibrary.org/obo/UBERON_0001687'], 'synonymLabels': [], 'label': 'ossicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010928': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010928', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010928', 'parent': 'http://purl.org/sig/ont/fma/fma46623', 'children': [], 'synonymLabels': ['cricopharyngeal part of inferior constrictor pharyngeus', 'cricopharyngeal part of inferior pharyngeal constrictor', 'cricopharyngeus', 'cricopharyngeus portion of the inferior pharyngeal constrictor', 'musculus cricopharyngeus', 'pars cricopharyngea (musculus constrictor pharyngis inferior)', 'pars cricopharyngea musculus constrictoris pharyngis inferioris', 'cricopharyngeus muscle'], 'label': 'cricopharyngeal part of inferior pharyngeal constrictor muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010933': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010933', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010933', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': ['http://purl.org/sig/ont/fma/fma323230', 'http://purl.org/sig/ont/fma/fma276073'], 'synonymLabels': ['orbicularis oris'], 'label': 'orbicularis oris muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010937': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010937', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010937', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle', 'children': [], 'synonymLabels': ['salpingopharyngeus'], 'label': 'salpingopharyngeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010943': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010943', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010943', 'parent': 'http://purl.org/sig/ont/fma/fma46291', 'children': [], 'synonymLabels': ['anterior belly of digastric', 'anterior digastric', 'anterior digastric muscle', 'digastric, anterior', 'digastricus anterior', 'digastricus anterior belly', 'digastricus, venter rostralis', 'venter anterior (musculus digastricus)', 'venter posterior musculus digastrici anterior'], 'label': 'anterior belly of digastric muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010944': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010944', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010944', 'parent': 'http://purl.org/sig/ont/fma/fma46291', 'children': [], 'synonymLabels': ['digastric, posterior', 'digastricus posterior', 'digastricus posterior belly', 'digastricus, venter caudalis', 'm. digastricus posterior', 'posterior belly of digastric', 'posterior digastric muscle', 'venter posterior musculus digastrici'], 'label': 'posterior belly of digastric muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010946': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010946', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010946', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': ['https://purl.org/ccf/ASCTB-TEMP_frontal-belly-of-occipitofrontalis-muscle', 'https://purl.org/ccf/ASCTB-TEMP_occipital-belly-of-occipitofrontalis-muscle'], 'synonymLabels': [], 'label': 'occipitofrontalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010953': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010953', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010953', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': ['http://purl.org/sig/ont/fma/fma46773', 'http://purl.org/sig/ont/fma/fma46772'], 'synonymLabels': ['nasalis'], 'label': 'nasalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010990', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'children': ['https://purl.org/ccf/ASCTB-TEMP_multifidus-cervicis-muscle', 'https://purl.org/ccf/ASCTB-TEMP_multifidus-lumborum-muscle', 'https://purl.org/ccf/ASCTB-TEMP_multifidus-thoracis-muscle', 'http://purl.org/sig/ont/fma/fma23082', 'http://purl.org/sig/ont/fma/fma23083', 'http://purl.org/sig/ont/fma/fma22830', 'http://purl.org/sig/ont/fma/fma22829', 'http://purl.org/sig/ont/fma/fma22828'], 'synonymLabels': ['transverospinalis'], 'label': 'transversospinales muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010994': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010994', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010994', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': ['coronoid process of the ulna', 'processus coronoideus', 'ulnar coronoid process'], 'label': 'coronoid process of ulna'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010995': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010995', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010995', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001597', 'children': [], 'synonymLabels': ['deep layer of masseter', 'deep part of masseter', 'masseter, deep', 'masseter, profundus', 'pars profunda (musculus masseter)', 'pars profunda musculus masseterica', 'pars profunda of masseter muscle'], 'label': 'deep part of masseter muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0010996': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0010996', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0010996', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009984', 'children': [], 'synonymLabels': ['articular cartilage of joint', 'articular cartilage', 'cartilago articularis'], 'label': 'articular cartilage of femur'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011011', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['brachioradialis'], 'label': 'brachioradialis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011012', 'parent': 'http://purl.org/sig/ont/fma/fma321805', 'children': ['http://purl.org/sig/ont/fma/fma46107', 'http://purl.org/sig/ont/fma/fma46104'], 'synonymLabels': ['flexor pollicis brevis'], 'label': 'flexor pollicis brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011014', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011014', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['spinal muscle of head', 'spinalis capitis'], 'label': 'spinalis capitis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011016', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002461', 'children': [], 'synonymLabels': ['pyramidalis'], 'label': 'pyramidalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011022', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': ['flexor hallucis brevis', 'm.flexor hallucis brevis'], 'label': 'flexor hallucis brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011050', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002347', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eighth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10011', 'http://purl.org/sig/ont/fma/fma9997', 'http://purl.org/sig/ont/fma/fma10003', 'http://purl.org/sig/ont/fma/fma10004', 'http://purl.org/sig/ont/fma/fma10001', 'http://purl.org/sig/ont/fma/fma10005', 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eighth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10009', 'http://purl.org/sig/ont/fma/fma9996', 'http://purl.org/sig/ont/fma/fma10002', 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eighth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma10006', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eighth-thoracic-vertebra', 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eighth-thoracic-vertebra', 'http://purl.org/sig/ont/fma/fma13488'], 'synonymLabels': ['eighth dorsal vertebra', 'eighth thoracic vertebra', 'T8 vertebra'], 'label': 'thoracic vertebra 8'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011096', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000348', 'children': [], 'synonymLabels': ['nervus lacrimalis'], 'label': 'lacrimal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011140': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011140', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011140', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001597', 'children': [], 'synonymLabels': ['masseter, superficial', 'pars profunda musculus masseterica superficialis', 'pars superficialis (musculus masseter)', 'pars superficialis of masseter muscle', 'superficial layer of masseter', 'superficial part of masseter'], 'label': 'superficial part of masseter muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011143': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011143', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011143', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001224', 'http://purl.obolibrary.org/obo/UBERON_0036295'], 'synonymLabels': [], 'label': 'upper urinary tract'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011184', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011184', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000317', 'children': [], 'synonymLabels': ['intestinal crypt epithelium', 'epithelium of crypt of Lieberkuhn'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011188', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['lesser tubercle', 'lesser tuberosity of humerus', 'tuberculum minus'], 'label': 'lesser tubercle of humerus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011189', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011189', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000314', 'children': [], 'synonymLabels': ['lamina propria of mucosa of large intestine', 'large intestinal lamina propria', 'large intestine lamina propria', 'lamina propria of large intestine'], 'label': 'lamina propria'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011192', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011192', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003712', 'children': ['http://purl.org/sig/ont/fma/fma51798', 'http://purl.org/sig/ont/fma/fma51770', 'http://purl.obolibrary.org/obo/UBERON_0018256', 'http://purl.obolibrary.org/obo/UBERON_0004689', 'http://purl.obolibrary.org/obo/UBERON_0035547'], 'synonymLabels': [], 'label': 'superior ophthalmic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011193', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011193', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003712', 'children': [], 'synonymLabels': [], 'label': 'inferior ophthalmic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011194': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011194', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011194', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['ophthalmic nerve plexus', 'opthalmic plexus', 'plexus ophthalmicus'], 'label': 'ophthalmic plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011216': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011216', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011216', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000383'], 'synonymLabels': [], 'label': 'organ system subdivision'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011218': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011218', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011218', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['spinal muscle of neck'], 'label': 'spinalis cervicis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011309', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011309', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': ['corpus mandibulae', 'mandibular body'], 'label': 'body of mandible'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011326': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011326', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011326', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': ['http://purl.org/sig/ont/fma/fma6243', 'http://purl.org/sig/ont/fma/fma6240'], 'synonymLabels': ['nervus laryngealis superior', 'nervus laryngeus superior', 'superior laryngeal branch of inferior vagal ganglion', 'superior laryngeal branch of vagus'], 'label': 'superior laryngeal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011389': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011389', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011389', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': ['bulbospongiosus', 'musculus bulbospongiosus'], 'label': 'bulbospongiosus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011390', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011390', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': ['http://purl.org/sig/ont/fma/fma21870', 'http://purl.org/sig/ont/fma/fma21869', 'http://purl.org/sig/ont/fma/fma21865', 'http://purl.org/sig/ont/fma/fma21866'], 'synonymLabels': ['nervus pudendae', 'nervus pudendales'], 'label': 'pudendal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011511': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011511', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011511', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': ['iliococcygeus', 'musculus iliococcygeus'], 'label': 'iliococcygeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011512': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011512', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011512', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': ['puborectalis'], 'label': 'puborectalis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011528': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011528', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011528', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': ['levator prostatae', 'musculus pubococcygeus', 'musculus pubovaginalis'], 'label': 'pubococcygeus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011532': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011532', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011532', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': ['pubovaginalis muscle', 'female pubococcygeus muscle'], 'label': 'pubovaginalis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011575': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011575', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011575', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': ['ulnar styloid process', 'processus styloideus ulnae'], 'label': 'styloid process of ulna'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011820': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011820', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011820', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000948', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002352'], 'synonymLabels': ['atrioventricular region'], 'label': 'atrioventricular junction'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011907': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011907', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011907', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001388', 'children': [], 'synonymLabels': ['caput mediale (musculus gastrocnemius)', 'caput mediale musculus gastrocnemii', 'medial head of gastrocnemius', 'medial head of gastrocnemius muscle'], 'label': 'gastrocnemius medialis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011908': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011908', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011908', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001388', 'children': [], 'synonymLabels': ['caput laterale (musculus gastrocnemius)', 'caput laterale musculus gastrocnemii', 'lateral head of gastrocnemius', 'lateral head of gastrocnemius muscle'], 'label': 'gastrocnemius lateralis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011924': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011924', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011924', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034728', 'children': ['http://purl.obolibrary.org/obo/UBERON_0011929', 'http://purl.obolibrary.org/obo/UBERON_0011926'], 'synonymLabels': ['postganglionic nerve fiber'], 'label': 'postganglionic autonomic fiber'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011925': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011925', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011925', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034728', 'children': [], 'synonymLabels': ['preganglionic nerve fiber'], 'label': 'preganglionic autonomic fiber'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011926': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011926', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011926', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011924', 'children': [], 'synonymLabels': [], 'label': 'postganglionic sympathetic fiber'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011929': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011929', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011929', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011924', 'children': [], 'synonymLabels': [], 'label': 'postganglionic parasympathetic fiber'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011949': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011949', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011949', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002451', 'children': [], 'synonymLabels': [], 'label': 'endometrium luminal epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011955', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['http://purl.org/sig/ont/fma/fma15804', 'http://purl.org/sig/ont/fma/fma15803', 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-vein'], 'synonymLabels': [], 'label': 'left hepatic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011956': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011956', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011956', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['http://purl.org/sig/ont/fma/fma15798', 'http://purl.org/sig/ont/fma/fma15797', 'http://purl.org/sig/ont/fma/fma15796'], 'synonymLabels': [], 'label': 'right hepatic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0011957': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0011957', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0011957', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': ['http://purl.org/sig/ont/fma/fma15800', 'http://purl.org/sig/ont/fma/fma15801', 'http://purl.org/sig/ont/fma/fma15802'], 'synonymLabels': [], 'label': 'middle hepatic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012067', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600009', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600000'], 'synonymLabels': ['primary bronchiole'], 'label': 'proximal bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012109': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012109', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012109', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': ['frontal bone - zygomatic process', 'processus zygomaticus (os frontale)', 'processus zygomaticus ossis frontalis'], 'label': 'zygomatic process of frontal bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012110': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012110', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012110', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001683', 'children': [], 'synonymLabels': ['processus frontalis (os zygomaticum)', 'processus frontalis ossis zygomatici', 'zygomatic bone - frontal process'], 'label': 'frontal process of zygomatic bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012173', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012173', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['middle suprarenal arterial tree'], 'label': 'middle suprarenal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012181': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012181', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012181', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'children': [], 'synonymLabels': ['cryptae tonsillares', 'tonsillar crypt'], 'label': 'tonsil crypt'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012187': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012187', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012187', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['frontal artery', 'supratrochlear branch of ophthalmic artery'], 'label': 'supratrochlear artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012194': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012194', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012194', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': [], 'label': 'superior intercostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012195', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012195', 'parent': 'http://purl.org/sig/ont/fma/fma4761', 'children': ['http://purl.org/sig/ont/fma/fma4799', 'http://purl.org/sig/ont/fma/fma4800'], 'synonymLabels': [], 'label': 'left superior intercostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012196', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': ['http://purl.org/sig/ont/fma/fma4880', 'http://purl.org/sig/ont/fma/fma4879', 'http://purl.org/sig/ont/fma/fma4878'], 'synonymLabels': [], 'label': 'right superior intercostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012199', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012199', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['venae intercostalis posterior'], 'label': 'posterior intercostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012200', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012200', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': [], 'label': 'anterior intercostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012237': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012237', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012237', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': [], 'label': 'superior phrenic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012239', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012239', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001256', 'children': [], 'synonymLabels': ['blood vessels of bladder', 'set of urinary bladder blood vessels', 'bladder vasculature'], 'label': 'urinary bladder vasculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012247': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012247', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012247', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': [], 'synonymLabels': ['glandulae cervicales'], 'label': 'cervical gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012249', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012249', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ectocervical-epithelium', 'https://purl.org/ccf/ASCTB-TEMP_ectocervical-stroma', 'https://purl.org/ccf/ASCTB-TEMP_external-cervical-os'], 'synonymLabels': ['portio vaginalis', 'portio vaginalis cervicis', 'uterine ectocervix', 'vaginal part of cervix'], 'label': 'ectocervix'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012250', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012250', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004801', 'children': [], 'synonymLabels': [], 'label': 'cervix glandular epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012252', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012252', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000458', 'children': [], 'synonymLabels': ['endocervical glandular epithelium'], 'label': 'endocervical epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012255', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012255', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001198'], 'synonymLabels': ['arteriae phrenicae inferiores'], 'label': 'inferior phrenic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012271': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012271', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012271', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001064', 'children': [], 'synonymLabels': ['greater duodenal papilla', 'tubercle of Vater'], 'label': 'major duodenal papilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012276', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012276', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002451', 'children': [], 'synonymLabels': ['glandular part of endometrium', 'uterine glands', 'uterine glands set'], 'label': 'endometrium glandular epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012291', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001446', 'children': [], 'synonymLabels': [], 'label': 'lateral malleolus of fibula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006082', 'children': [], 'synonymLabels': [\"Mercier's bar\", 'orifice of ureter', 'orificium ureteris', 'ostium ureteris', 'ureteral meatus', 'ureteral opening', 'ureteric orifice', 'ureteric ostium', 'ureterovesical orifice'], 'label': 'ureteral orifice'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012318': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012318', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012318', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010251'], 'synonymLabels': ['a. ethmoidalis anterior', 'arteria ethmoidalis anterior'], 'label': 'anterior ethmoidal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012319', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012319', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['a. ethmoidalis posterior', 'arteria ethmoidalis posterior'], 'label': 'posterior ethmoidal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012321', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004688', 'children': ['https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-2'], 'synonymLabels': [], 'label': 'deep cervical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007149', 'children': ['https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery'], 'synonymLabels': [], 'label': 'ascending cervical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012324', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012324', 'parent': 'http://purl.org/sig/ont/fma/fma3990', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001071'], 'synonymLabels': [], 'label': 'transverse cervical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012331', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-mesosalpinx', 'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx'], 'synonymLabels': [], 'label': 'mesosalpinx'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012332', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012332', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003885', 'http://purl.obolibrary.org/obo/UBERON_0002493'], 'synonymLabels': ['broad uterine ligament'], 'label': 'broad ligament of uterus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012373': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012373', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012373', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001248', 'children': [], 'synonymLabels': ['sympathetic nerve plexus'], 'label': 'sympathetic nerves'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012375': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012375', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012375', 'parent': '', 'children': [], 'synonymLabels': [], 'label': 'subserosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012377': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012377', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012377', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002115', 'children': ['https://purl.org/ccf/ASCTB-TEMP_myenteric-plexus-of-auerbach'], 'synonymLabels': ['muscularis externa of jejunum', 'muscle layer of jejunum'], 'label': 'muscularis externa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012378': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012378', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012378', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001256', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000381'], 'synonymLabels': ['bladder muscular coat', 'muscular coat of bladder', 'muscular coat of urinary bladder', 'muscular layer of bladder', 'muscular layer of urinary bladder', 'tunica musculari vesicae', 'tunica muscularis (vesica urinaria)'], 'label': 'muscle layer of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012398': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012398', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012398', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012489', 'children': [], 'synonymLabels': ['large intestine smooth muscle circular layer'], 'label': 'circular muscle layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012399': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012399', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012399', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012489', 'children': [], 'synonymLabels': ['large intestine smooth muscle longitudinal layer'], 'label': 'longitudinal muscle layer'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012401', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012401', 'parent': 'http://purl.org/sig/ont/fma/fma7206', 'children': [], 'synonymLabels': ['small intestine smooth muscle circular layer', 'circular layer of small intestine muscularis propria', 'circular muscle coat of small intestine', 'circular muscle layer of small intestine', 'circular muscle of small intestine', 'short pitch helicoidal muscle layer of small intestine', 'stratum circulare (tunica muscularis)(intestinum tenue)', 'stratum circulare tunicae muscularis intestini tenuis', 'stratum helicoidale brevis gradus tunicae muscularis intestini tenuis'], 'label': 'muscularis propria'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012416': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012416', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012416', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002040', 'children': [], 'synonymLabels': ['respiratory system arterial smooth muscle'], 'label': 'arterial system smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012418': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012418', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012418', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001592', 'children': [], 'synonymLabels': ['respiratory system venous smooth muscle'], 'label': 'venous system smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012419': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012419', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012419', 'parent': '', 'children': [], 'synonymLabels': ['longitudinal band of large intestine muscularis', 'taenia coli'], 'label': 'tenia coli'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012441': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012441', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012441', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005272', 'children': [], 'synonymLabels': ['peritubular capillary endothelium', 'endothelium of peritubular capillary'], 'label': 'endothelium (non glomerular)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012489': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012489', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012489', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000159', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012398', 'http://purl.obolibrary.org/obo/UBERON_0012399'], 'synonymLabels': ['tunica muscularis coli', 'colonic muscularis propria', 'muscular coat of colon', 'muscular layer of colon', 'muscularis externa of colon', 'muscle layer of colon'], 'label': 'muscularis propria'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012494': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012494', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012494', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000320', 'children': [], 'synonymLabels': ['lamina muscularis of duodenal mucous membrane', 'lamina muscularis of duodenum', 'muscularis mucosae of duodenum'], 'label': 'muscularis mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012498': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012498', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012498', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001154', 'children': [], 'synonymLabels': ['appendiceal serosa', 'appendix serosa', 'serosa of vermiform appendix', 'visceral peritoneum of vermiform appendix', 'serosa of appendix'], 'label': 'serosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0012648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0012648', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': ['https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla'], 'synonymLabels': ['ampulla of uterine tube', 'ampulla of oviduct', 'ampulla tubae uterinae', 'uterine tube ampulla'], 'label': 'ampulla of fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013132', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013132', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010401', 'children': ['https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen-2'], 'synonymLabels': ['penicillus', 'penicilli', 'penicillar arteriole of spleen'], 'label': 'penicillar arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013133': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013133', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013133', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['arteria phrenicea superioris', 'arteriae phrenicae superiores'], 'label': 'superior phrenic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013142': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013142', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013142', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001546', 'children': [], 'synonymLabels': ['soleus vein', 'vein of soleus muscle', 'vena solealis'], 'label': 'soleal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013143': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013143', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013143', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'children': [], 'synonymLabels': ['vein of gastrocnemius muscle', 'vena gastrocnemii'], 'label': 'gastrocnemius vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013144': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013144', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013144', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'children': [], 'synonymLabels': [], 'label': 'vein of genicular venous plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013191': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013191', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-antimesenteric-ovary', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000450', 'http://purl.org/sig/ont/fma/fma323217', 'http://purl.obolibrary.org/obo/UBERON_0002512', 'http://purl.org/sig/ont/fma/fma18713', 'https://purl.org/ccf/ASCTB-TEMP_cortical-blood-vessels', 'http://purl.obolibrary.org/obo/UBERON_0001305', 'http://purl.obolibrary.org/obo/UBERON_0006960'], 'synonymLabels': ['cortex ovarii (zona parenchymatosa)', 'cortex of ovary'], 'label': 'ovarian cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013192', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013192', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-antimesenteric-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lymphatic-vessel', 'https://purl.org/ccf/ASCTB-TEMP_matrisome', 'https://purl.org/ccf/ASCTB-TEMP_nerve', 'https://purl.org/ccf/ASCTB-TEMP_ovarian-medullary-vasculature'], 'synonymLabels': ['medulla of ovary', 'medulla ovarii (zona vasculosa)'], 'label': 'ovarian medulla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013485': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013485', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013485', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000317', 'children': [], 'synonymLabels': ['crypt of Lieberkuhn of colon', 'colonic crypt', 'colonic crypt of Lieberkuhn'], 'label': 'crypt'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosa', 'https://purl.org/ccf/ASCTB-TEMP_muscularis-propria'], 'synonymLabels': ['ampulla (duodenum)', 'ampulla duodeni', 'ampulla of duodenum', 'bulbus (duodenum)', 'bulbus duodeni', 'duodenal cap', 'duodenal cap viewed radiologically'], 'label': 'duodenal ampulla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013648', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013648', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['arteria masseterica'], 'label': 'masseteric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013688', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013688', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010754', 'children': ['https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-dark-zone', 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-light-zone'], 'synonymLabels': [], 'label': 'tonsil germinal center'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013696': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013696', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013696', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'children': [], 'synonymLabels': [], 'label': 'tonsil epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013702': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013702', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013702', 'parent': None, 'children': ['http://purl.obolibrary.org/obo/UBERON_0000955', 'http://purl.obolibrary.org/obo/UBERON_0000029', 'http://purl.obolibrary.org/obo/UBERON_0000970', 'http://purl.obolibrary.org/obo/UBERON_0003889', 'http://purl.obolibrary.org/obo/UBERON_0000948', 'http://purl.obolibrary.org/obo/UBERON_0002113', 'http://purl.obolibrary.org/obo/UBERON_0001465', 'http://purl.obolibrary.org/obo/UBERON_0002107', 'http://purl.obolibrary.org/obo/UBERON_0002048', 'http://purl.obolibrary.org/obo/UBERON_0002182', 'http://purl.obolibrary.org/obo/UBERON_0001911', 'http://purl.obolibrary.org/obo/UBERON_0000992', 'http://purl.obolibrary.org/obo/UBERON_0002373', 'http://purl.obolibrary.org/obo/UBERON_0001264', 'http://purl.obolibrary.org/obo/UBERON_0001270', 'http://purl.obolibrary.org/obo/UBERON_0001987', 'http://purl.obolibrary.org/obo/UBERON_0002367', 'http://purl.obolibrary.org/obo/UBERON_0002097', 'http://purl.obolibrary.org/obo/UBERON_0002108', 'http://purl.obolibrary.org/obo/UBERON_0002240', 'http://purl.obolibrary.org/obo/UBERON_0000059', 'http://purl.obolibrary.org/obo/UBERON_0002106', 'http://purl.obolibrary.org/obo/UBERON_0002370', 'http://purl.obolibrary.org/obo/UBERON_0003126', 'http://purl.obolibrary.org/obo/UBERON_0000056', 'http://purl.obolibrary.org/obo/UBERON_0001255', 'http://purl.obolibrary.org/obo/UBERON_0000995', 'http://purl.obolibrary.org/obo/UBERON_0004537'], 'synonymLabels': ['body proper'], 'label': 'body'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013761', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': [], 'synonymLabels': ['lumen of cervix of uterus'], 'label': 'cervical cavity'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0013767': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0013767', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0013767', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['processus frontalis (maxilla)'], 'label': 'frontal process of maxilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014379', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014379', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': ['http://purl.org/sig/ont/fma/fma46014', 'http://purl.org/sig/ont/fma/fma46015'], 'synonymLabels': ['adductor hallucis'], 'label': 'adductor hallucis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014380': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014380', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014380', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': ['flexor digitorum brevis', 'flexor digitorum brevis of foot', 'musculus flexor digitorum brevis'], 'label': 'flexor digitorum brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014463': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014463', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014463', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001805', 'children': [], 'synonymLabels': ['cardiac ganglia set', 'cardiac ganglion of Wrisberg', 'ganglia cardiaca', 'ganglion of Wrisberg', 'Wrisberg ganglion'], 'label': 'cardiac ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014477', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005944', 'children': ['https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'https://purl.org/ccf/ASCTB-TEMP_sternal-region-bone'], 'synonymLabels': ['skeleton of thorax', 'thoracic part of axial skeleton'], 'label': 'thoracic skeleton'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014541': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014541', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014541', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': ['thoracic spinal cord central canal'], 'label': 'thoracic division of spinal cord central canal'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014543', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014543', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002792', 'children': [], 'synonymLabels': ['lumbar spinal cord central canal'], 'label': 'lumbar division of spinal cord central canal'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014547': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014547', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014547', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': ['sacral spinal cord central canal'], 'label': 'sacral division of spinal cord central canal'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014607': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014607', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014607', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord lateral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014608', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014608', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': [], 'label': 'inferior occipital gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014609': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014609', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014609', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014611', 'http://purl.obolibrary.org/obo/UBERON_0014612'], 'synonymLabels': [], 'label': 'thoracic spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014610', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014610', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord ventral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014611': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014611', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014611', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014609', 'children': [], 'synonymLabels': [], 'label': 'apex of thoracic spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014612': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014612', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014612', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014609', 'children': [], 'synonymLabels': [], 'label': 'substantia gelatinosa of thoracic spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014613': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014613', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014613', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': [], 'label': 'cervical spinal cord gray matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014614': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014614', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014614', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': [], 'label': 'cervical spinal cord white matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014619', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014619', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': [], 'label': 'cervical spinal cord lateral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014620': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014620', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014620', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014622', 'http://purl.obolibrary.org/obo/UBERON_0014623'], 'synonymLabels': [], 'label': 'cervical spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014621': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014621', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014621', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': [], 'label': 'cervical spinal cord ventral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014622': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014622', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014622', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014620', 'children': [], 'synonymLabels': [], 'label': 'apex of cervical spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014623', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014623', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014620', 'children': [], 'synonymLabels': [], 'label': 'substantia gelatinosa of cervical spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014632', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014632', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014638', 'children': [], 'synonymLabels': [], 'label': 'apex of lumbar spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014633': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014633', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014633', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014638', 'children': [], 'synonymLabels': [], 'label': 'substantia gelatinosa of lumbar spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord gray matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014637': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014637', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014637', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord white matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014638', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0029636', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014632', 'http://purl.obolibrary.org/obo/UBERON_0014633'], 'synonymLabels': [], 'label': 'lumbar spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002037', 'children': [], 'synonymLabels': ['cerebellum lateral hemisphere', 'cerebellum lateral zone', 'neocerebellum', 'pontocerebellum', 'cerebrocerebellum'], 'label': 'lateral hemisphere of cerebellum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014685': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014685', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014685', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001660', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001661', 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-vein'], 'synonymLabels': ['pterygoid plexus', 'plexus venosus pterygoideus'], 'label': 'pterygoid venous plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014686': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014686', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': ['http://purl.org/sig/ont/fma/fma50910', 'http://purl.obolibrary.org/obo/UBERON_0002459', 'http://purl.obolibrary.org/obo/UBERON_0014768', 'http://purl.obolibrary.org/obo/UBERON_0001654', 'http://purl.org/sig/ont/fma/fma50898', 'https://purl.org/ccf/ASCTB-TEMP_transverse-nasal-root-vein'], 'synonymLabels': [], 'label': 'angular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014690': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014690', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014690', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': ['vena gastrica sinistra'], 'label': 'left gastric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014691': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014691', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014691', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': ['http://purl.org/sig/ont/fma/fma15404'], 'synonymLabels': ['vena gastrica dextra'], 'label': 'right gastric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014692', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014692', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': [], 'label': 'superficial epigastric vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014693': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014693', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014693', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': ['https://purl.org/ccf/ASCTB-TEMP_incisor-artery', 'http://purl.obolibrary.org/obo/UBERON_0001617'], 'synonymLabels': [], 'label': 'inferior alveolar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014694': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014694', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001070', 'children': ['http://purl.org/sig/ont/fma/fma49641', 'http://purl.org/sig/ont/fma/fma49644', 'http://purl.org/sig/ont/fma/fma49647', 'http://purl.org/sig/ont/fma/fma49631', 'http://purl.obolibrary.org/obo/UBERON_0006345', 'http://purl.org/sig/ont/fma/fma49628'], 'synonymLabels': [], 'label': 'posterior auricular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014695': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014695', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014695', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': [], 'label': 'deep auricular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014696': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014696', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014696', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': [], 'synonymLabels': [], 'label': 'anterior choroidal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014716', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014716', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001064', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014719'], 'synonymLabels': [], 'label': 'interlobular duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014719': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014719', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014719', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014716', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014726'], 'synonymLabels': [], 'label': 'intralobular duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014726': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014726', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014726', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014719', 'children': [], 'synonymLabels': ['intercalated duct of pancreas', 'ductus intercalatus (pancreas)', 'pancreatic ductule'], 'label': 'intercalated duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014768': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014768', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014768', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'children': [], 'synonymLabels': [], 'label': 'superior palpebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014772': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014772', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014772', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001622', 'children': [], 'synonymLabels': ['lateral palpebral branch of ophthalmic artery'], 'label': 'lateral palpebral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014773', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['medial palpebral branch of ophthalmic artery'], 'label': 'medial palpebral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014847', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014847', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001377', 'children': [], 'synonymLabels': [], 'label': 'vastus intermedius'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014892': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014892', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014892', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018254', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003661'], 'synonymLabels': ['skeletal muscle organ, vertebrate'], 'label': 'skeletal muscle organ'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0014904': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0014904', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0014904', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002016', 'children': ['http://purl.org/sig/ont/fma/fma9413'], 'synonymLabels': ['infrasegmental part of pulmonary vein', 'intersegmental part of pulmonary vein', 'partes intersegmentales venarum pulmonum'], 'label': 'intersegmental pulmonary vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015157', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015157', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'children': [], 'synonymLabels': [], 'label': 'zygomatico-orbital artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015160': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015160', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015160', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['supra-orbital artery', 'arteria supraorbitalis'], 'label': 'supraorbital artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015171', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015171', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_radial-artery-of-uterus', 'children': [], 'synonymLabels': ['endometrial spiral arteriole', 'endometrial spiral artery'], 'label': 'uterine spiral artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015172': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015172', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015172', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'children': [], 'synonymLabels': ['blood vessel of endometrium'], 'label': 'endometrial blood vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015173', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015173', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-body-of-uterus', 'children': ['https://purl.org/ccf/ASCTB-TEMP_radial-artery-of-uterus'], 'synonymLabels': ['helicine branch of uterine artery', 'helicine artery of uterus', 'rami helicini uterinae'], 'label': 'arcuate artery of uterus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015174': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015174', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015174', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008321', 'children': [], 'synonymLabels': ['arteriae helicinae penis'], 'label': 'helicine artery of penis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015180': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015180', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015180', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002395', 'children': [], 'synonymLabels': ['talar neck', 'talus neck'], 'label': 'neck of talus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015350', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015350', 'parent': 'http://purl.org/sig/ont/fma/fma22506', 'children': [], 'synonymLabels': ['ramus saphenus (arteria descendentis genus)', 'saphenous artery'], 'label': 'saphenous branch of descending genicular artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015410': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015410', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015410', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004535', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002407'], 'synonymLabels': ['heart/pericardium'], 'label': 'heart plus pericardium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015480': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015480', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015480', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005436', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015481', 'http://purl.obolibrary.org/obo/UBERON_0015482'], 'synonymLabels': ['hepatic artery proper'], 'label': 'proper hepatic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015481': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015481', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015481', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015480', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-artery-of-caudate-lobe', 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-artery', 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-artery', 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-artery'], 'synonymLabels': ['left branch of hepatic artery', 'left part of hepatic artery proper', 'ramus sinister (arteria hepatica propria)'], 'label': 'left hepatic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015482': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015482', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015482', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015480', 'children': ['http://purl.org/sig/ont/fma/fma14835', 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-artery', 'https://purl.org/ccf/ASCTB-TEMP_right-artery-of-caudate-lobe', 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-artery'], 'synonymLabels': ['right branch of hepatic artery proper', 'right part of hepatic artery proper', 'ramus dexter (arteria hepatica propria)'], 'label': 'right hepatic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015488', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015488', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': [], 'label': 'sural nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015716', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015716', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003342', 'children': [], 'synonymLabels': ['anal canal epithelium', 'epithelium of anal canal'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015834', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015834', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000320', 'children': [], 'synonymLabels': ['duodenal lamina propria', 'lamina propria mucosae of duodenum', 'lamina propria of duodenum', 'duodenum lamina propria'], 'label': 'lamina propria/gut associated lymphoid tissue (galt)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015878': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015878', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015878', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016386', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015880', 'http://purl.obolibrary.org/obo/UBERON_0015881'], 'synonymLabels': ['common iliac node', 'iliac lymph node'], 'label': 'common iliac lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015880': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015880', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015880', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015878', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009006'], 'synonymLabels': ['external iliac node'], 'label': 'external iliac lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0015881': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0015881', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0015881', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015878', 'children': [], 'synonymLabels': ['internal iliac node'], 'label': 'internal iliac lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016378': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016378', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016378', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': ['nodi lymphoidei ileocolici'], 'label': 'ileocolic lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016386': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016386', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016386', 'parent': 'http://purl.org/sig/ont/fma/fma12765', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015878'], 'synonymLabels': ['lateral aortic lymph node', 'lateral aortic node', 'para-aortic lymph node'], 'label': 'paraaortic lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016402': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016402', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016402', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': [], 'label': 'mesocolic lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016405': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016405', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016405', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002173', 'children': [], 'synonymLabels': ['capillary of lung'], 'label': 'pulmonary capillary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016430': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016430', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': ['http://purl.org/sig/ont/fma/fma44841', 'http://purl.org/sig/ont/fma/fma44844', 'http://purl.org/sig/ont/fma/fma44838', 'http://purl.org/sig/ont/fma/fma44839', 'http://purl.org/sig/ont/fma/fma44859', 'http://purl.org/sig/ont/fma/fma44864', 'http://purl.org/sig/ont/fma/fma44869', 'http://purl.org/sig/ont/fma/fma44854', 'http://purl.org/sig/ont/fma/fma44842', 'http://purl.org/sig/ont/fma/fma44843'], 'synonymLabels': ['median nerve palmar branch', 'palmar branch of anterior interosseous nerve', 'palmar cutaneous branch of median nerve', 'ramus palmaris (nervus medianus)', 'ramus palmaris nervus interossei antebrachii anterior'], 'label': 'palmar branch of median nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016477', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['malar process of maxilla', 'processus zygomaticus (maxilla)', 'processus zygomaticus maxillae', 'zygomaticoorbital process of maxilla'], 'label': 'zygomatic process of maxilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016478': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016478', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016478', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': [], 'synonymLabels': ['liver stroma', 'hepatic stroma', 'stroma of liver'], 'label': 'stroma'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016492', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': ['foramen spinosum'], 'label': 'foramen spinosum of sphenoid bone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016493': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016493', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016493', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': [], 'synonymLabels': ['palmaris longus', 'musculus palmaris longus'], 'label': 'palmaris longus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016500': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016500', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016500', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006082', 'children': [], 'synonymLabels': [], 'label': 'muscularis mucosa of fundus of urinary bladder'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016508': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016508', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016508', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003964', 'children': [], 'synonymLabels': ['inferior hypogastric ganglion'], 'label': 'pelvic ganglion'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016519': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016519', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016519', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000399', 'children': [], 'synonymLabels': ['muscularis mucosae of jejunum'], 'label': 'muscularis mucosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016525': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016525', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000956', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002644', 'http://purl.obolibrary.org/obo/UBERON_0001870', 'http://purl.obolibrary.org/obo/UBERON_0002947', 'http://purl.obolibrary.org/obo/UBERON_0002795', 'https://purl.org/ccf/ASCTB-TEMP_frontomarginal-gyrus', 'http://purl.obolibrary.org/obo/UBERON_0004671', 'http://purl.obolibrary.org/obo/UBERON_0002998', 'https://purl.org/ccf/ASCTB-TEMP_inferior-frontal-junction', 'http://purl.obolibrary.org/obo/UBERON_0002761', 'http://purl.obolibrary.org/obo/UBERON_0004725', 'http://purl.obolibrary.org/obo/UBERON_0002564', 'http://purl.obolibrary.org/obo/UBERON_0002570', 'http://purl.obolibrary.org/obo/UBERON_0002702', 'http://purl.obolibrary.org/obo/UBERON_0002593', 'http://purl.obolibrary.org/obo/UBERON_0035932', 'http://purl.obolibrary.org/obo/UBERON_0022398', 'http://purl.obolibrary.org/obo/UBERON_0019280', 'http://purl.obolibrary.org/obo/UBERON_0002661'], 'synonymLabels': ['lobi frontales', 'lobus frontalis'], 'label': 'frontal lobe'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016554': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016554', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016554', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001891', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002623'], 'synonymLabels': ['mesencephalic white matter'], 'label': 'white matter of midbrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0016632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0016632', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': ['https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus'], 'synonymLabels': ['isthmus tubae uterinae'], 'label': 'isthmus of fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0017618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0017618', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0017618', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['extensor pollicis brevis'], 'label': 'extensor pollicis brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0017637': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0017637', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0017637', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005475', 'children': [], 'synonymLabels': ['intracranial marginal sinus'], 'label': 'marginal venous sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0017641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0017641', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005476', 'children': ['http://purl.org/sig/ont/fma/fma65659', 'http://purl.org/sig/ont/fma/fma65650', 'http://purl.org/sig/ont/fma/fma16702', 'http://purl.org/sig/ont/fma/fma65638', 'http://purl.org/sig/ont/fma/fma16698', 'http://purl.org/sig/ont/fma/fma65647', 'http://purl.org/sig/ont/fma/fma16701', 'http://purl.org/sig/ont/fma/fma65641', 'http://purl.org/sig/ont/fma/fma16699', 'http://purl.org/sig/ont/fma/fma65656', 'http://purl.org/sig/ont/fma/fma65653', 'http://purl.org/sig/ont/fma/fma65644', 'http://purl.org/sig/ont/fma/fma16700', 'http://purl.org/sig/ont/fma/fma11226', 'http://purl.org/sig/ont/fma/fma11229', 'http://purl.org/sig/ont/fma/fma11232', 'http://purl.org/sig/ont/fma/fma16717', 'http://purl.org/sig/ont/fma/fma11114', 'http://purl.org/sig/ont/fma/fma16713', 'http://purl.org/sig/ont/fma/fma11222', 'http://purl.org/sig/ont/fma/fma16716', 'http://purl.org/sig/ont/fma/fma10953', 'http://purl.org/sig/ont/fma/fma11230', 'http://purl.org/sig/ont/fma/fma16714', 'http://purl.org/sig/ont/fma/fma11221', 'http://purl.org/sig/ont/fma/fma11228', 'http://purl.org/sig/ont/fma/fma11227', 'http://purl.org/sig/ont/fma/fma11231', 'http://purl.org/sig/ont/fma/fma16715', 'http://purl.org/sig/ont/fma/fma10984', 'http://purl.org/sig/ont/fma/fma11233'], 'synonymLabels': ['ramus meningeus nervorum spinales', 'recurrent meningeal branch of spinal nerve', 'sinuvertebral branch of spinal nerve'], 'label': 'meningeal branch of spinal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0017642': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0017642', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005476', 'children': ['http://purl.org/sig/ont/fma/fma11761', 'http://purl.org/sig/ont/fma/fma11773', 'http://purl.org/sig/ont/fma/fma65914', 'http://purl.org/sig/ont/fma/fma65990', 'http://purl.org/sig/ont/fma/fma65910', 'http://purl.org/sig/ont/fma/fma65986', 'http://purl.org/sig/ont/fma/fma65913', 'http://purl.org/sig/ont/fma/fma65989', 'http://purl.org/sig/ont/fma/fma11765', 'http://purl.org/sig/ont/fma/fma65911', 'http://purl.org/sig/ont/fma/fma65987', 'http://purl.org/sig/ont/fma/fma11676', 'http://purl.org/sig/ont/fma/fma11655', 'http://purl.org/sig/ont/fma/fma11769', 'http://purl.org/sig/ont/fma/fma11136', 'http://purl.org/sig/ont/fma/fma12220', 'http://purl.org/sig/ont/fma/fma10972', 'http://purl.org/sig/ont/fma/fma11277', 'http://purl.org/sig/ont/fma/fma11007', 'http://purl.org/sig/ont/fma/fma6591', 'http://purl.org/sig/ont/fma/fma65988', 'http://purl.org/sig/ont/fma/fma12697', 'http://purl.org/sig/ont/fma/fma12698', 'http://purl.org/sig/ont/fma/fma12699'], 'synonymLabels': [], 'label': 'communicating branch of spinal nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018227': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018227', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018227', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600022', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003529'], 'synonymLabels': ['lymphatic vessel of lung'], 'label': 'pulmonary lymphatic vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018231', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018231', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009689', 'children': ['http://purl.org/sig/ont/fma/fma52239', 'http://purl.org/sig/ont/fma/fma52242'], 'synonymLabels': ['internal auditory artery', 'arteria auditiva interna', 'arteria labyrinthi'], 'label': 'labyrinthine artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018234', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018234', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007324', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009752'], 'synonymLabels': ['pancreatic stroma'], 'label': 'stroma of pancreas'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018243', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018243', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': ['https://purl.org/ccf/ASCTB-TEMP_thymic-arteriole'], 'synonymLabels': ['thymic branch of internal thoracic artery'], 'label': 'thymic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018252', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018252', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': ['https://purl.org/ccf/ASCTB-TEMP_bulbar-vein', 'http://purl.org/sig/ont/fma/fma21242', 'http://purl.org/sig/ont/fma/fma21254'], 'synonymLabels': ['vena pudenda interna'], 'label': 'internal pudendal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018253', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018253', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': ['vena pudenda externa'], 'label': 'external pudendal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018254', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018254', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014892'], 'synonymLabels': [], 'label': 'skeletal musculature'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018255', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018255', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'children': ['https://purl.org/ccf/ASCTB-TEMP_jejunal-arcade'], 'synonymLabels': ['jejunal artery'], 'label': 'jejunal branches'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018256': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018256', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018256', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011192', 'children': [], 'synonymLabels': [], 'label': 'lacrimal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018397', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018397', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['superior posterior alveolar artery'], 'label': 'posterior superior alveolar artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018412': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018412', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018412', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['nerve of pterygoid canal', 'pterygoid canal nerve'], 'label': 'vidian nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018673': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018673', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018673', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001446', 'children': [], 'synonymLabels': ['fibula neck', 'fibular neck'], 'label': 'neck of fibula'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018675': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018675', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018675', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003715', 'children': [], 'synonymLabels': ['pelvic splanchnic parasympathetic nerve'], 'label': 'pelvic splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018679', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018679', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003715', 'children': ['http://purl.obolibrary.org/obo/UBERON_0018680', 'http://purl.obolibrary.org/obo/UBERON_0001964', 'http://purl.obolibrary.org/obo/UBERON_0018681'], 'synonymLabels': [], 'label': 'thoracic splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018680': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018680', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018680', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018679', 'children': [], 'synonymLabels': ['greater thoracic splanchnic nerve'], 'label': 'greater splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018681': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018681', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018681', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018679', 'children': [], 'synonymLabels': ['lesser thoracic splanchnic nerve'], 'label': 'lesser splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0018683': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0018683', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0018683', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003715', 'children': [], 'synonymLabels': [], 'label': 'lumbar splanchnic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019202', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019202', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['musculus gemellus inferior', 'gemellus inferior', 'inferior gemellus'], 'label': 'inferior gemellus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019203', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019203', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['gemellus superior', 'musculus gemellus superior', 'superior gemellus'], 'label': 'superior gemellus muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019258': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019258', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019258', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002028', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002163', 'http://purl.obolibrary.org/obo/UBERON_0002152', 'http://purl.obolibrary.org/obo/UBERON_0002707', 'http://purl.obolibrary.org/obo/UBERON_0002150'], 'synonymLabels': [], 'label': 'white matter of hindbrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019261', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001890', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000935', 'http://purl.obolibrary.org/obo/UBERON_0002336', 'http://purl.obolibrary.org/obo/UBERON_0000052', 'http://purl.obolibrary.org/obo/UBERON_0001887', 'http://purl.obolibrary.org/obo/UBERON_0002990', 'http://purl.obolibrary.org/obo/UBERON_0002265', 'http://purl.obolibrary.org/obo/UBERON_0022264', 'http://purl.obolibrary.org/obo/UBERON_0001908'], 'synonymLabels': [], 'label': 'white matter of forebrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019263': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019263', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019263', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002028', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002037', 'http://purl.obolibrary.org/obo/UBERON_0001896', 'http://purl.obolibrary.org/obo/UBERON_0000988'], 'synonymLabels': ['gray matter of the hindbrain'], 'label': 'gray matter of hindbrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019264': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019264', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001890', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001876', 'https://purl.org/ccf/ASCTB-TEMP_amygdaloid-complex', 'http://purl.obolibrary.org/obo/UBERON_0002743', 'http://purl.obolibrary.org/obo/UBERON_0010011', 'http://purl.obolibrary.org/obo/UBERON_0000956', 'http://purl.obolibrary.org/obo/UBERON_0002023', 'http://purl.obolibrary.org/obo/UBERON_0001897', 'https://purl.org/ccf/ASCTB-TEMP_thalamus'], 'synonymLabels': [], 'label': 'gray matter of forebrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019267': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019267', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019267', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001891', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001946', 'http://purl.obolibrary.org/obo/UBERON_0001943', 'http://purl.obolibrary.org/obo/UBERON_0003040', 'http://purl.obolibrary.org/obo/UBERON_0001944', 'http://purl.obolibrary.org/obo/UBERON_0001947', 'http://purl.obolibrary.org/obo/UBERON_0002038', 'http://purl.obolibrary.org/obo/UBERON_0001945'], 'synonymLabels': [], 'label': 'gray matter of midbrain'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019278': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019278', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019278', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019280', 'children': [], 'synonymLabels': [], 'label': 'inferior rostral gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019279', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019279', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019280', 'children': [], 'synonymLabels': [], 'label': 'superior rostral gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0019280': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0019280', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0019280', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': ['http://purl.obolibrary.org/obo/UBERON_0019278', 'http://purl.obolibrary.org/obo/UBERON_0019279'], 'synonymLabels': [], 'label': 'rostral gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022264': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022264', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022264', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019261', 'children': [], 'synonymLabels': [\"Gratiolet's radiation\"], 'label': 'optic radiation'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022268': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022268', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022268', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': [], 'synonymLabels': [], 'label': 'planum temporale'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022276', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022276', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': ['splenic flexure of colon', 'flexura coli splenica', 'left colic flexure'], 'label': 'splenic flexure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022277': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022277', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022277', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000059', 'children': [], 'synonymLabels': ['hepatic flexure of colon', 'flexura coli heaptica', 'right colic flexure'], 'label': 'hepatic flexure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022281': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022281', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022281', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000314', 'children': [], 'synonymLabels': ['epithelium of crypt of Lieberkuhn of large intestine'], 'label': 'epithelium'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022300', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022300', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000942', 'children': ['http://purl.obolibrary.org/obo/UBERON_0022301'], 'synonymLabels': ['nasal nerve'], 'label': 'nasociliary nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022301': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022301', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022301', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0022300', 'children': [], 'synonymLabels': [], 'label': 'long ciliary nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022302': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022302', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022302', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002058', 'children': [], 'synonymLabels': ['lower branch of ciliary ganglion'], 'label': 'short ciliary nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022355': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022355', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022355', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'children': [], 'synonymLabels': ['basal layer of endometrium', 'pars basalis of endometrium', 'stratum basalis of endometrium'], 'label': 'stratum basalis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022356': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022356', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022356', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'children': [], 'synonymLabels': ['functional layer of endometrium', 'stratum functionalis of endometrium', 'outer layer of endometrium'], 'label': 'statum functionalis'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022358': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022358', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022358', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600029', 'children': [], 'synonymLabels': ['placenta blood vessel'], 'label': 'placental blood vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022364': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022364', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022364', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006083'], 'synonymLabels': ['occipital fusiform gyrus (OF)', 'occipitotemporal (fusiform) gyrus, occipital part', 'occipital fusiform gyrus'], 'label': 'occipitotemporal (fusiform) gyrus, temporal part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022383', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022383', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002973', 'children': [], 'synonymLabels': ['parahippocampal gyrus, anterior division'], 'label': 'anterior parahippocampal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0022398': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0022398', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0022398', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['paracingulate gyrus (PAC)'], 'label': 'paracingulate gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0023787': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0023787', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0023787', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002421', 'children': [], 'synonymLabels': [], 'label': 'subicular complex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0023861': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0023861', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0023861', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001871', 'children': [], 'synonymLabels': [], 'label': 'planum polare'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0024151': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0024151', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0024151', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001896', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002127', 'http://purl.obolibrary.org/obo/UBERON_0001717'], 'synonymLabels': ['tegmentum'], 'label': 'tegmentum of the medulla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0026246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0026246', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0026246', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord white matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0026293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0026293', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0026293', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003038', 'children': [], 'synonymLabels': [], 'label': 'thoracic spinal cord gray commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0026386': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0026386', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0026386', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002792', 'children': [], 'synonymLabels': [], 'label': 'lumbar spinal cord white matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0027285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0027285', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0027285', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002037', 'children': [], 'synonymLabels': ['paravermis lobule area', 'regional parts of the paravermal lobules'], 'label': 'paravermis of cerebellum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0029503': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0029503', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0029503', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord gray matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0029538': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0029538', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0029538', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord lateral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0029626': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0029626', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0029626', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002726', 'children': [], 'synonymLabels': [], 'label': 'cervical spinal cord gray commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0029636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0029636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0029636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002792', 'children': ['http://purl.obolibrary.org/obo/UBERON_0014638', 'http://purl.obolibrary.org/obo/UBERON_0033483', 'http://purl.obolibrary.org/obo/UBERON_0031906', 'http://purl.obolibrary.org/obo/UBERON_0007834', 'http://purl.obolibrary.org/obo/UBERON_0030276'], 'synonymLabels': [], 'label': 'lumbar spinal cord gray matter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0030276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0030276', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0030276', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0029636', 'children': [], 'synonymLabels': [], 'label': 'lumbar spinal cord ventral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0031111': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0031111', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0031111', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord gray commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0031906': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0031906', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0031906', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0029636', 'children': [], 'synonymLabels': [], 'label': 'lumbar spinal cord lateral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0032748': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0032748', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0032748', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord ventral horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0033483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0033483', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0033483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0029636', 'children': [], 'synonymLabels': [], 'label': 'lumbar spinal cord gray commissure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0033939': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0033939', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0033939', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005843', 'children': [], 'synonymLabels': [], 'label': 'sacral spinal cord dorsal horn'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034673': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034673', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034673', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': [], 'label': 'amygdalohippocampal area'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034693': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034693', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034693', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001354', 'children': [], 'synonymLabels': ['cremasteric part of inferior epigastric artery'], 'label': 'cremasteric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034713': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034713', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034713', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004904', 'children': [], 'synonymLabels': ['cranial neuron projection bundle'], 'label': 'nerve bundle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034727': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034727', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034727', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': [], 'synonymLabels': ['artery of bulb of vestibule', 'arteria bulbi vestibuli'], 'label': 'vestibular bulb artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034728': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034728', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034728', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004293', 'http://purl.obolibrary.org/obo/UBERON_0011924', 'http://purl.obolibrary.org/obo/UBERON_0011925'], 'synonymLabels': ['nervus visceralis', 'visceral nerve'], 'label': 'autonomic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034729': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034729', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034729', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035495', 'children': [], 'synonymLabels': [], 'label': 'sympathetic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034773', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002973', 'children': [], 'synonymLabels': ['uncus hippocampi'], 'label': 'uncus of parahippocampal gyrus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034884': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034884', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034884', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006544', 'children': [], 'synonymLabels': [], 'label': 'juxtaglomerular arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034891': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034891', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034891', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002022', 'children': [], 'synonymLabels': ['insular cortex', 'cortex of insula', 'insular neocortex'], 'label': 'long insular gyri'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034927': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034927', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034927', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001539', 'children': ['http://purl.org/sig/ont/fma/fma44650', 'http://purl.org/sig/ont/fma/fma44648', 'http://purl.org/sig/ont/fma/fma44649'], 'synonymLabels': [], 'label': 'arcuate artery of foot'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034964', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034964', 'parent': 'http://purl.org/sig/ont/fma/fma0323778', 'children': [], 'synonymLabels': [], 'label': 'superficial epigastric artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034965': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034965', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034965', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': [], 'synonymLabels': [], 'label': 'middle thyroid vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034981': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034981', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034981', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': [], 'synonymLabels': ['bulbus superior venae jugularis', 'superior bulb of jugular vein'], 'label': 'superior bulb of internal jugular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034982': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034982', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034982', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': [], 'synonymLabels': ['bulbus inferior venae jugularis', 'inferior bulb of jugular vein'], 'label': 'inferior bulb of internal jugular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034986', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.org/sig/ont/fma/fma66049', 'http://purl.org/sig/ont/fma/fma66052', 'http://purl.org/sig/ont/fma/fma78714', 'http://purl.org/sig/ont/fma/fma66048', 'http://purl.org/sig/ont/fma/fma78711', 'http://purl.org/sig/ont/fma/fma81170', 'http://purl.org/sig/ont/fma/fma16509', 'http://purl.org/sig/ont/fma/fma78705', 'http://purl.org/sig/ont/fma/fma16511', 'http://purl.org/sig/ont/fma/fma19040', 'http://purl.org/sig/ont/fma/fma45337', 'http://purl.obolibrary.org/obo/UBERON_0001322', 'http://purl.org/sig/ont/fma/fma16510'], 'synonymLabels': ['plexus sacralis', 'sacral plexus'], 'label': 'sacral nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034987': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034987', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.org/sig/ont/fma/fma80165', 'http://purl.obolibrary.org/obo/UBERON_0001267', 'http://purl.org/sig/ont/fma/fma16484', 'http://purl.org/sig/ont/fma/fma16482', 'http://purl.org/sig/ont/fma/fma16483', 'http://purl.org/sig/ont/fma/fma16485', 'http://purl.org/sig/ont/fma/fma20578', 'http://purl.org/sig/ont/fma/fma20580', 'http://purl.org/sig/ont/fma/fma20579', 'http://purl.org/sig/ont/fma/fma16487'], 'synonymLabels': ['lumbar plexus', 'plexus lumbalis'], 'label': 'lumbar nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0034991': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0034991', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0034991', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001876', 'children': [], 'synonymLabels': ['anterior cortical amygdaloid nucleus'], 'label': 'anterior cortical nucleus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035040', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001183', 'children': [], 'synonymLabels': ['superior hemorrhoidal artery'], 'label': 'superior rectal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035042', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'children': [], 'synonymLabels': [], 'label': 'middle temporal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035139': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035139', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035139', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['spina nasalis anterior corporis maxillae'], 'label': 'anterior nasal spine of maxilla'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035150': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035150', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035150', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001642', 'children': [], 'synonymLabels': [], 'label': 'superior cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035152': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035152', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035152', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006666', 'children': ['http://purl.org/sig/ont/fma/fma51329', 'http://purl.org/sig/ont/fma/fma50997'], 'synonymLabels': [], 'label': 'internal cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035180': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035180', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035180', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001183', 'children': [], 'synonymLabels': ['inferior left colic artery'], 'label': 'sigmoid artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035183', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035183', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['ramus calcarinus (arteria occipitalis medialis)', 'calcarine branch of medial occipital artery'], 'label': 'calcarine artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035222', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035222', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': [], 'label': 'posterior parietal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035225': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035225', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035225', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': [], 'label': 'anterior temporal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035231', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035231', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003712', 'children': ['https://purl.org/ccf/ASCTB-TEMP_sphenopalatine-sinus'], 'synonymLabels': ['Sylvian vein', 'vein of Labbe'], 'label': 'superficial middle cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035234', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035234', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001361', 'children': [], 'synonymLabels': [], 'label': 'medial circumflex femoral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035249', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035249', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'children': [], 'synonymLabels': [], 'label': 'posterior external jugular vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035252', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035252', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006663', 'children': [], 'synonymLabels': ['vena subcostalis sinistra'], 'label': 'left subcostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035261', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035261', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'children': [], 'synonymLabels': [], 'label': 'posterior temporal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035273': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035273', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035273', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': [], 'synonymLabels': [], 'label': 'superior thoracic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035279', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035279', 'parent': 'http://purl.org/sig/ont/fma/fma234912', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm'], 'synonymLabels': ['nodus lymphaticus supraclavicularis axillae', 'supraclavicular node'], 'label': 'supraclavicular lymph node'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['trunk of right common iliac arterial tree'], 'label': 'right common iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035374': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035374', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035374', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005438', 'children': [], 'synonymLabels': ['right cardiac vein'], 'label': 'small cardiac vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035392': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035392', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035392', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': ['cholecystic vein'], 'label': 'cystic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035404': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035404', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035404', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': ['https://purl.org/ccf/ASCTB-TEMP_external-primary-capillary-plexus-of-median-eminence'], 'synonymLabels': ['superior hypophysial artery'], 'label': 'superior hypophyseal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035422': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035422', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035422', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001626', 'children': ['http://purl.org/sig/ont/fma/fma322905', 'http://purl.org/sig/ont/fma/fma322906', 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-artery'], 'synonymLabels': ['circumflex coronary artery', 'left circumflex branch of left coronary artery', 'ramus circumflexus (arteria coronaria sinistra)', 'circumflex branch of left coronary artery'], 'label': 'left circumflex artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035435': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035435', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035435', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': ['vena suprarenalis (adrenalis) dextra'], 'label': 'right suprarenal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035462': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035462', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035462', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['anterior parietal artery'], 'label': 'artery of postcentral sulcus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035474': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035474', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035474', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['vena subcostalis dextra'], 'label': 'right subcostal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035483', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001142', 'children': [], 'synonymLabels': [], 'label': 'left suprarenal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035492', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': ['https://purl.org/ccf/ASCTB-TEMP_capillary-plexus-of-posterior-pituitary-gland'], 'synonymLabels': ['inferior hypophysial artery'], 'label': 'inferior hypophyseal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035495': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035495', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035495', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000029', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010397', 'http://purl.obolibrary.org/obo/UBERON_0034729'], 'synonymLabels': ['hilum nodi lymphoidei', 'lymph node hilum', 'hilum of lymph node'], 'label': 'hilum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035529': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035529', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035529', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['trunk of left common iliac arterial tree'], 'label': 'left common iliac artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035530': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035530', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035530', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006666', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001672', 'http://purl.obolibrary.org/obo/UBERON_0035532', 'https://purl.org/ccf/ASCTB-TEMP_inferior-striate-vein', 'http://purl.org/sig/ont/fma/fma51341'], 'synonymLabels': ['basal vein of rosenthal', \"rosenthal's vein\"], 'label': 'basal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035532': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035532', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035532', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035530', 'children': [], 'synonymLabels': [], 'label': 'deep middle cerebral vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035539': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035539', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035539', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['aortic esophageal artery', 'oesophageal artery'], 'label': 'esophageal artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035547': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035547', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035547', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011192', 'children': [], 'synonymLabels': ['posterior ciliary vein'], 'label': 'vorticose vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035549': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035549', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035549', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002067', 'children': [], 'synonymLabels': ['superficial part of circulatory system', 'superficial vasculature', 'vasculature of integument'], 'label': 'blood vessels'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035640': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035640', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035640', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001312', 'children': [], 'synonymLabels': [], 'label': 'middle vesical artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035650', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': [], 'synonymLabels': ['clitoral nerve', 'clitoris nerve'], 'label': 'nerve of clitoris'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035655': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035655', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035655', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': ['venae paraumbilicales'], 'label': 'paraumbilical vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035659': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035659', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035659', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': [], 'synonymLabels': [], 'label': 'deep facial vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035662': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035662', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035662', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': [], 'synonymLabels': ['anterior parotid vein', 'parotid branch of facial vein'], 'label': 'parotid vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035768': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035768', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035768', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.org/sig/ont/fma/fma19038'], 'synonymLabels': ['coccygeal plexus', 'plexus coccygeus'], 'label': 'coccygeal nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035770': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035770', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035770', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035771', 'children': [], 'synonymLabels': ['inferior mesenteric plexus', 'plexus mesentericus inferior', 'plexus nervosus mesentericus inferior'], 'label': 'inferior mesenteric nerve plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035771': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035771', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035771', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035770', 'http://purl.obolibrary.org/obo/UBERON_0005488'], 'synonymLabels': [], 'label': 'mesenteric plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035772': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035772', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035772', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': [], 'label': 'aortic plexus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035829': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035829', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035829', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010132', 'children': [], 'synonymLabels': ['right gastro-epiploic artery', 'right gastro-omental artery', 'right gastroomental artery', 'arteria gastro-omentalis dextra', 'arteria gastroepiploica dextra', 'arteria gastroomentalis dextra'], 'label': 'right gastroepiploic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035830', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035830', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': [], 'synonymLabels': ['left gastro-epiploic artery', 'left gastro-omental artery', 'left gastroomental artery', 'left inferior gastric artery', 'arteria gastro-omentalis sinistra', 'arteria gastroepiploica sinistra', 'arteria gastroomentalis sinistra'], 'label': 'left gastroepiploic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035932': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035932', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035932', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': ['anterior segment of paracentral lobule', 'anterior part of paracentral lobule', 'medial segment of precentral gyrus', 'paracentral lobule, anterior part'], 'label': 'paracentral lobule, rostral part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035934': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035934', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035934', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001872', 'children': [], 'synonymLabels': ['posterior part of paracentral lobule', 'posterior segment of paracentral lobule'], 'label': 'paracentral lobule, caudal part'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0035966': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0035966', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0035966', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004904', 'children': [], 'synonymLabels': ['lamina cribrosa of sclera', 'lamina cribrosa sclerae'], 'label': 'scleral lamina cribrosa'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0036074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0036074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0036074', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'children': [], 'synonymLabels': ['vestibular aqueduct vein', 'vena aqueductus vestibuli'], 'label': 'vein of vestibular aqueduct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0036172': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0036172', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0036172', 'parent': 'http://purl.org/sig/ont/fma/fma321806', 'children': [], 'synonymLabels': ['musculus palmaris brevis', 'palmaris brevis'], 'label': 'palmaris brevis muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0036216': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0036216', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0036216', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': [], 'label': 'tympanic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0036295': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0036295', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0036295', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011143', 'children': [], 'synonymLabels': ['renal pelvis and ureter', 'renal pelvis plus ureter'], 'label': 'renal pelvis/ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0036300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0036300', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0036300', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001673', 'children': [], 'synonymLabels': ['central retinal venous tributary'], 'label': 'tributary of central retinal vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_0036376': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_0036376', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_0036376', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000056', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001253', 'http://purl.obolibrary.org/obo/UBERON_0009919', 'https://purl.org/ccf/ASCTB-TEMP_ureter-vasculature'], 'synonymLabels': ['left ureteral wall'], 'label': 'wall of left ureter'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_1000023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_1000023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_1000023', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002106', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001250', 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-white-pulp-border', 'http://purl.obolibrary.org/obo/UBERON_0001251', 'http://purl.obolibrary.org/obo/UBERON_0001959'], 'synonymLabels': ['Malpighian corpuscles', 'pulp of spleen', 'spleen pulp'], 'label': 'splenic pulp'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_2001571': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_2001571', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_2001571', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000039'], 'synonymLabels': [], 'label': 'postovulatory follicle'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_2005346': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_2005346', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_2005346', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000017', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001174'], 'synonymLabels': [], 'label': 'extrapancreatic duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410000', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'children': [], 'synonymLabels': ['duodeno-jejunal flexure', 'duodenojejunal junction', 'flexura duodenojejunalis', 'duodeno-jejunal junction'], 'label': 'duodenojejunal flexure'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410010', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': ['https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-fimbria', 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-fimbria', 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-fimbria', 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-fimbria', 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-fimbria'], 'synonymLabels': ['fimbriae of fallopian tube', 'fimbriae of uterine tube', 'fimbria of uterine tube'], 'label': 'fimbria of fallopian tube'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410017', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001215', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-2'], 'synonymLabels': [], 'label': 'left colic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410018', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-4'], 'synonymLabels': [], 'label': 'right colic vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410022', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001183', 'children': ['http://purl.org/sig/ont/fma/fma14828', 'http://purl.org/sig/ont/fma/fma14829'], 'synonymLabels': [], 'label': 'left colic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410023', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001182', 'children': [], 'synonymLabels': [], 'label': 'right colic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410032', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005463', 'children': [], 'synonymLabels': ['lymph node trabecular sinus', 'trabecular sinus of lymph node'], 'label': 'trabecular sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410033', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410033', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002007', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410036'], 'synonymLabels': ['hilar vein of lymph node', 'vein of lymph node', 'lymph node vein'], 'label': 'hilar vein'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410034', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410034', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002007', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410035'], 'synonymLabels': ['artery of lymph node', 'hilar artery of lymph node', 'lymph node artery'], 'label': 'lymphatic artery'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410035': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410035', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410035', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410034', 'children': [], 'synonymLabels': ['arteriole of medulla of lymph node', 'medullary arteriole of lymph node'], 'label': 'arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410036', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410033', 'children': [], 'synonymLabels': ['venule of medulla of lymph node', 'medullary venule of lymph node'], 'label': 'venule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410038', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410066', 'children': [], 'synonymLabels': ['lymph node high endothelial venule', 'high endothelial venule of lymph node'], 'label': 'high endothelial venule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410041', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002006', 'children': [], 'synonymLabels': ['lymph node venule', 'venule of lymph node'], 'label': 'venule'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410042', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410066', 'children': [], 'synonymLabels': ['lymph node arteriole', 'arteriole of lymph node'], 'label': 'arteriole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410043': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410043', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410043', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002183', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600010', 'http://purl.obolibrary.org/obo/UBERON_8600012', 'http://purl.obolibrary.org/obo/UBERON_8600013'], 'synonymLabels': ['submucosal bronchial gland', 'submucosal bronchus gland', 'bronchus submucosal gland'], 'label': 'bronchial submucosal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410052': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410052', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410052', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009039', 'children': [], 'synonymLabels': ['light zone of lymph node germinal center', 'lymph node germinal center light zone'], 'label': 'light zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410053': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410053', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410053', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009039', 'children': [], 'synonymLabels': ['dark zone of lymph node germinal center', 'lymph node germinal center dark zone'], 'label': 'dark zone'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410058', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410058', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002439', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410059'], 'synonymLabels': [], 'label': 'myenteric nerve plexus of colon'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410059', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410058', 'children': [], 'synonymLabels': [], 'label': 'submucous nerve plexus of colon'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410062', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': [], 'synonymLabels': [], 'label': 'parasympathetic cholinergic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410063': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410063', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410063', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002439', 'children': [], 'synonymLabels': [], 'label': 'myenteric nerve plexus of small intestine'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410064', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003332', 'children': [], 'synonymLabels': ['submucous nerve plexus of small intestine'], 'label': 'submucosal plexus of meissner submucosal plexus (meissners plexus, plexus of the submucosa, plexus submucosus)'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410066', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410066', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002006', 'children': ['http://purl.obolibrary.org/obo/UBERON_8410042', 'http://purl.obolibrary.org/obo/UBERON_0006842', 'http://purl.obolibrary.org/obo/UBERON_8410038', 'http://purl.obolibrary.org/obo/UBERON_8410075', 'http://purl.obolibrary.org/obo/UBERON_8410074'], 'synonymLabels': ['lymph node paracortex'], 'label': 'paracortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410067', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002006', 'children': [], 'synonymLabels': ['interfollicular cortex of lymph node', 'lymph node interfollicular cortex'], 'label': 'interfollicular cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410071', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005463', 'children': [], 'synonymLabels': ['ceiling of subcapsular sinus of lymph node', 'floor of capsule of lymph node', 'subcapsular sinus of lymph node ceiling'], 'label': 'subcapsular sinus ceiling'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410072', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005463', 'children': [], 'synonymLabels': ['ceiling of cortex of lymph node', 'floor of subcapsular sinus of lymph node', 'subcapsular sinus of lymph node floor'], 'label': 'subcapsular sinus floor'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410074', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410066', 'children': [], 'synonymLabels': ['lymph node paracortical sinus'], 'label': 'paracortical sinus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8410075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8410075', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8410075', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410066', 'children': [], 'synonymLabels': ['lymph node paracortical cord'], 'label': 'paracortical cord'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8450002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8450002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8450002', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000467', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001008'], 'synonymLabels': [], 'label': 'excretory system'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600000', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012067', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002051', 'http://purl.obolibrary.org/obo/UBERON_0004515'], 'synonymLabels': ['preterminal bronchiole'], 'label': 'lobular bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600017', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012067'], 'synonymLabels': [], 'label': 'subsegmental bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600010', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410043', 'children': [], 'synonymLabels': ['ciliated ducts of bronchial submucosal gland'], 'label': 'bronchial submucosal gland ciliated duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600011', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005203', 'children': [], 'synonymLabels': ['tracheal submucosal gland ciliated duct'], 'label': 'terminal ciliated ducts for tracheal submucosal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600012', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410043', 'children': [], 'synonymLabels': ['submucosal gland acinus'], 'label': 'submucosal gland acini'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600013', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410043', 'children': [], 'synonymLabels': [], 'label': 'submucosal gland collecting duct'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600017', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007196', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600009'], 'synonymLabels': ['lung segment'], 'label': 'bronchopulmonary segment'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600019', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600038', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600020'], 'synonymLabels': ['placenta basal plate', 'placental basal plate'], 'label': 'basal plate'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600020': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600020', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600020', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600019', 'children': [], 'synonymLabels': ['placenta septum', 'placental septum'], 'label': 'septum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600021', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-mesoderm', 'children': [], 'synonymLabels': ['chorionic plate blood vessel'], 'label': 'chorionic plate vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600022', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010369', 'children': ['http://purl.obolibrary.org/obo/UBERON_0018227'], 'synonymLabels': [], 'label': 'pulmonary interlobular septum'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600026', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600026', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004027', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600029', 'http://purl.obolibrary.org/obo/UBERON_8600031', 'http://purl.obolibrary.org/obo/UBERON_8600028', 'http://purl.obolibrary.org/obo/UBERON_8600027', 'http://purl.obolibrary.org/obo/UBERON_8600030'], 'synonymLabels': ['placental villous tree'], 'label': 'chorionic villous tree'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600027', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600027', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600026', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600040', 'http://purl.obolibrary.org/obo/UBERON_8600039'], 'synonymLabels': ['placental stem villus', 'chorionic stem villus'], 'label': 'stem villus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600028', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600026', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600041'], 'synonymLabels': ['chorionic mesenchymal villus'], 'label': 'mesenchymal villus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600029', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600029', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600026', 'children': ['http://purl.obolibrary.org/obo/UBERON_0022358'], 'synonymLabels': ['chorionic immature intermediate villus'], 'label': 'immature intermediate villus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600030': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600030', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600030', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600026', 'children': [], 'synonymLabels': ['chorionic terminal villus'], 'label': 'terminal villus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600031': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600031', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600031', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600026', 'children': [], 'synonymLabels': ['chorionic mature intermediate villus'], 'label': 'mature intermediate villus'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600036', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001289', 'children': [], 'synonymLabels': ['long descending limb of the loop of Henle in the outer medulla', 'kidney loop of Henle long descending thin limb outer medulla'], 'label': 'descending thin limb of loop of henle 2'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600037': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600037', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600037', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001289', 'children': [], 'synonymLabels': ['long descending limb of the loop of Henle in the inner medulla', 'kidney loop of Henle long descending thin limb inner medulla'], 'label': 'descending thin limb of loop of henle 3'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600038', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001987', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600019', 'http://purl.obolibrary.org/obo/UBERON_0004027'], 'synonymLabels': ['placental disk'], 'label': 'placental disc'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600039', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600027', 'children': [], 'synonymLabels': ['chorionic villous mesenchyme'], 'label': 'villous mesenchyme'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600040', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600027', 'children': [], 'synonymLabels': ['chorionic stem villous blood vessel'], 'label': 'stem villous vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600041', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8600028', 'children': [], 'synonymLabels': ['chorionic terminal villous capillary'], 'label': 'villous capillary'}),\n",
      "  'http://purl.obolibrary.org/obo/UBERON_8600042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/UBERON_8600042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/UBERON_8600042', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001295', 'children': [], 'synonymLabels': [], 'label': 'endometrial lymphatic vessel'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0323595': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0323595', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0323595', 'parent': 'http://purl.org/sig/ont/fma/fma22755', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-third-digit-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-second-digit-of-hand'], 'synonymLabels': ['Second dorsal metacarpal artery'], 'label': 'second dorsal metacarpal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0323596': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0323596', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0323596', 'parent': 'http://purl.org/sig/ont/fma/fma22755', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fourth-digit-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-third-digit-of-hand'], 'synonymLabels': ['Third dorsal metacarpal artery'], 'label': 'third dorsal metacarpal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0323597': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0323597', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0323597', 'parent': 'http://purl.org/sig/ont/fma/fma22755', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fifth-digit-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fourth-digit-of-hand'], 'synonymLabels': ['Fourth dorsal metacarpal artery'], 'label': 'fourth dorsal metacarpal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0323777': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0323777', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0323777', 'parent': 'http://purl.org/sig/ont/fma/fma0323778', 'children': ['http://purl.org/sig/ont/fma/fma22506', 'http://purl.obolibrary.org/obo/UBERON_0002250'], 'synonymLabels': ['Superficial femoral artery'], 'label': 'superficial femoral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0323778': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0323778', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0323778', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001308', 'children': ['http://purl.obolibrary.org/obo/UBERON_0007316', 'http://purl.obolibrary.org/obo/UBERON_0001355', 'http://purl.obolibrary.org/obo/UBERON_0009041', 'http://purl.obolibrary.org/obo/UBERON_0034964', 'http://purl.obolibrary.org/obo/UBERON_0007317', 'http://purl.org/sig/ont/fma/fma0323777'], 'synonymLabels': ['Common femoral artery'], 'label': 'common femoral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0327481': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0327481', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0327481', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Pharyngeal branch of the maxillary artery'], 'label': 'pharyngeal branch of maxillary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0327575': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0327575', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0327575', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_internal-primary-capillary-plexus-of-median-eminence', 'children': ['https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland'], 'synonymLabels': ['Hypophysial long portal vein'], 'label': 'long portal vessel of pituitary gland'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0327576': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0327576', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0327576', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_capillary-plexus-of-posterior-pituitary-gland', 'children': ['https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland-2'], 'synonymLabels': ['Hypophysial short portal vein'], 'label': 'short portal vessel of pituitary gland'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0329297': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0329297', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0329297', 'parent': 'http://purl.org/sig/ont/fma/fma15397', 'children': [], 'synonymLabels': ['Anterior superior pancreaticoduodenal vein'], 'label': 'anterior superior pancreaticoduodenal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0329298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0329298', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0329298', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': ['Posterior superior pancreaticoduodenal vein'], 'label': 'posterior superior pancreaticoduodenal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0329300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0329300', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0329300', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': [], 'synonymLabels': ['Anterior inferior pancreaticoduodenal vein'], 'label': 'anterior inferior pancreaticoduodenal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma0329301': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma0329301', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma0329301', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': [], 'synonymLabels': ['Posterior inferior pancreaticoduodenal vein'], 'label': 'posterior inferior pancreaticoduodenal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10001': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10001', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10001', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Pedicle of eighth thoracic vertebra'], 'label': 'pedicle of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10002', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10002', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Superior vertebral notch of eighth thoracic vertebra'], 'label': 'superior vertebral notch of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10003', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10003', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Inferior vertebral notch of eighth thoracic vertebra'], 'label': 'inferior vertebral notch of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10004', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10004', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Lamina of eighth thoracic vertebra'], 'label': 'lamina of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10005', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10005', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Spinous process of eighth thoracic vertebra'], 'label': 'spinous process of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10006', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10006', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Transverse process of eighth thoracic vertebra'], 'label': 'transverse process of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10009', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Superior articular process of eighth thoracic vertebra'], 'label': 'superior articular process of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10011', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10011', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Inferior articular process of eighth thoracic vertebra'], 'label': 'inferior articular process of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10019', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10019', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Superior costal facet of body of ninth thoracic vertebra'], 'label': 'superior costal facet of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10024', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10024', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Pedicle of ninth thoracic vertebra'], 'label': 'pedicle of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10025': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10025', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10025', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Superior vertebral notch of ninth thoracic vertebra'], 'label': 'superior vertebral notch of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10026', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10026', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Inferior vertebral notch of ninth thoracic vertebra'], 'label': 'inferior vertebral notch of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10027', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10027', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Lamina of ninth thoracic vertebra'], 'label': 'lamina of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10028', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10028', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Spinous process of ninth thoracic vertebra'], 'label': 'spinous process of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10029', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10029', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Transverse process of ninth thoracic vertebra'], 'label': 'transverse process of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10032', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10032', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Superior articular process of ninth thoracic vertebra'], 'label': 'superior articular process of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10034', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10034', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Inferior articular process of ninth thoracic vertebra'], 'label': 'inferior articular process of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10042', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10042', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Superior costal facet of body of tenth thoracic vertebra'], 'label': 'superior costal facet of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10046': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10046', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10046', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Pedicle of tenth thoracic vertebra'], 'label': 'pedicle of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10047': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10047', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10047', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Superior vertebral notch of tenth thoracic vertebra'], 'label': 'superior vertebral notch of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10048', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10048', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Inferior vertebral notch of tenth thoracic vertebra'], 'label': 'inferior vertebral notch of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10049', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10049', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Lamina of tenth thoracic vertebra'], 'label': 'lamina of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10050', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10050', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Spinous process of tenth thoracic vertebra'], 'label': 'spinous process of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10051', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10051', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Transverse process of tenth thoracic vertebra'], 'label': 'transverse process of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10054', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10054', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Superior articular process of tenth thoracic vertebra'], 'label': 'superior articular process of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10056', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10056', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Inferior articular process of tenth thoracic vertebra'], 'label': 'inferior articular process of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10068', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10068', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Pedicle of eleventh thoracic vertebra'], 'label': 'pedicle of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10069', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10069', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Superior vertebral notch of eleventh thoracic vertebra'], 'label': 'superior vertebral notch of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10070', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10070', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Inferior vertebral notch of eleventh thoracic vertebra'], 'label': 'inferior vertebral notch of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10071', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10071', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Lamina of eleventh thoracic vertebra'], 'label': 'lamina of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10072', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10072', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Spinous process of eleventh thoracic vertebra'], 'label': 'spinous process of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10073': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10073', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10073', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Transverse process of eleventh thoracic vertebra'], 'label': 'transverse process of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10076': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10076', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10076', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Superior articular process of eleventh thoracic vertebra'], 'label': 'superior articular process of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10078': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10078', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10078', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Inferior articular process of eleventh thoracic vertebra'], 'label': 'inferior articular process of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10090': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10090', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10090', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Pedicle of twelfth thoracic vertebra'], 'label': 'pedicle of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10091', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10091', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Superior vertebral notch of twelfth thoracic vertebra'], 'label': 'superior vertebral notch of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10092': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10092', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10092', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Inferior vertebral notch of twelfth thoracic vertebra'], 'label': 'inferior vertebral notch of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10093': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10093', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10093', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Lamina of twelfth thoracic vertebra'], 'label': 'lamina of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10094', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10094', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Spinous process of twelfth thoracic vertebra'], 'label': 'spinous process of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10095', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10095', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Transverse process of twelfth thoracic vertebra'], 'label': 'transverse process of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10097', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10097', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Superior articular process of twelfth thoracic vertebra'], 'label': 'superior articular process of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10099': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10099', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10099', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Inferior articular process of twelfth thoracic vertebra'], 'label': 'inferior articular process of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10641', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10641', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Anterior intercostal artery'], 'label': 'anterior intercostal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10648', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10648', 'parent': 'http://purl.org/sig/ont/fma/fma70370', 'children': [], 'synonymLabels': ['Mammary branch of internal thoracic artery'], 'label': 'medial mammary branch of perforating branch of internal thoracic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10649': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10649', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10649', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006632', 'children': [], 'synonymLabels': ['Seventh anterior intercostal artery'], 'label': 'anterior intercostal artery 7'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10650', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006632', 'children': [], 'synonymLabels': ['Eighth anterior intercostal artery'], 'label': 'anterior intercostal artery 8'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10651', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10651', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006632', 'children': [], 'synonymLabels': ['Ninth anterior intercostal artery'], 'label': 'anterior intercostal artery 9'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10652': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10652', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10652', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['First anterior intercostal artery'], 'label': 'anterior intercostal artery 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10653': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10653', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10653', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Second anterior intercostal artery'], 'label': 'anterior intercostal artery 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10654', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Third anterior intercostal artery'], 'label': 'anterior intercostal artery 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10655': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10655', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10655', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Fourth anterior intercostal artery'], 'label': 'anterior intercostal artery 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10656': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10656', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10656', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Fifth anterior intercostal artery'], 'label': 'anterior intercostal artery 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10657': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10657', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10657', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Sixth anterior intercostal artery'], 'label': 'anterior intercostal artery 6'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10663': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10663', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10663', 'parent': 'http://purl.org/sig/ont/fma/fma3990', 'children': [], 'synonymLabels': ['Suprascapular artery'], 'label': 'suprascapular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10787': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10787', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10787', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'children': [], 'synonymLabels': ['Anterior external vertebral venous plexus'], 'label': 'anterior external vertebral venous plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10953': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10953', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10953', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fourth thoracic nerve'], 'label': 'recurrent meningeal branch of fourth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10972': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10972', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10972', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of fourth intercostal nerve'], 'label': 'gray communicating ramus of the fourth thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma10984': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma10984', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma10984', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of third thoracic nerve'], 'label': 'recurrent meningeal branch of third thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11007', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11007', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of third intercostal nerve'], 'label': 'gray communicating ramus of the third thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11114', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11114', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fifth thoracic nerve'], 'label': 'recurrent meningeal branch of fifth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11136': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11136', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11136', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of fifth intercostal nerve'], 'label': 'gray communicating ramus of the fifth thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11221': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11221', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11221', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of second thoracic nerve'], 'label': 'recurrent meningeal branch of second thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11222', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11222', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of first thoracic nerve'], 'label': 'recurrent meningeal branch of first thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11226': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11226', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11226', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of coccygeal nerve'], 'label': 'recurrent meningeal branch of coccygeal spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11227': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11227', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11227', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of sixth thoracic nerve'], 'label': 'recurrent meningeal branch of sixth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11228', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11228', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of seventh thoracic nerve'], 'label': 'recurrent meningeal branch of seventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11229': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11229', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11229', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of eighth thoracic nerve'], 'label': 'recurrent meningeal branch of eighth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11230': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11230', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11230', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of ninth thoracic nerve'], 'label': 'recurrent meningeal branch of ninth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11231', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11231', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of tenth thoracic nerve'], 'label': 'recurrent meningeal branch of tenth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11232', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11232', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of eleventh thoracic nerve'], 'label': 'recurrent meningeal branch of eleventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11233': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11233', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11233', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of twelfth thoracic nerve'], 'label': 'recurrent meningeal branch of twelfth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11277': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11277', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11277', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of second intercostal nerve'], 'label': 'gray communicating ramus of the second thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11655': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11655', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11655', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of sixth intercostal nerve'], 'label': 'gray communicating ramus of sixth thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11676': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11676', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11676', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of seventh intercostal nerve'], 'label': 'gray communicating ramus of seventh thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11761', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of eighth intercostal nerve'], 'label': 'gray communicating ramus of eighth thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11765': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11765', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11765', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of ninth intercostal nerve'], 'label': 'gray communicating ramus of ninth thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11769': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11769', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11769', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of tenth intercostal nerve'], 'label': 'gray communicating ramus of tenth thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11773', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of eleventh intercostal nerve'], 'label': 'gray communicating ramus of eleventh thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma11994': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma11994', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma11994', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Costal facet of body of twelfth thoracic vertebra'], 'label': 'costal facet of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12208': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12208', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12208', 'parent': 'http://purl.org/sig/ont/fma/fma6871', 'children': [], 'synonymLabels': ['Branch of lesser occipital nerve to posterior auricular branch of facial nerve'], 'label': 'branch of lesser occipital nerve to posterior auricular branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12220': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12220', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12220', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of first intercostal nerve'], 'label': 'gray communicating ramus of the first thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12250', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12250', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Jugular lymphatic trunk'], 'label': 'jugular lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12251': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12251', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12251', 'parent': 'http://purl.org/sig/ont/fma/fma5832', 'children': [], 'synonymLabels': ['Right jugular lymphatic trunk'], 'label': 'right jugular lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12252', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12252', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': ['http://purl.org/sig/ont/fma/fma323948', 'http://purl.org/sig/ont/fma/fma71749', 'https://purl.org/ccf/ASCTB-TEMP_retropectoral-lymph-vessel', 'https://purl.org/ccf/ASCTB-TEMP_subclavicular-lymph-node', 'http://purl.org/sig/ont/fma/fma234912', 'https://purl.org/ccf/ASCTB-TEMP_transpectoral-lymph-vessel'], 'synonymLabels': ['Subclavian lymphatic trunk'], 'label': 'subclavian lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12697': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12697', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12697', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['White communicating ramus of first lumbar anterior ramus'], 'label': 'white communicating ramus of first lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12698': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12698', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12698', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['White communicating ramus of second lumbar anterior ramus'], 'label': 'white communicating ramus of second lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12699': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12699', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12699', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['White communicating ramus of third lumbar anterior ramus'], 'label': 'white communicating ramus of third lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12765': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12765', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12765', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005435', 'children': ['http://purl.org/sig/ont/fma/fma5842', 'http://purl.obolibrary.org/obo/UBERON_0016386', 'http://purl.org/sig/ont/fma/fma233577'], 'synonymLabels': ['Lumbar lymphatic trunk'], 'label': 'lumbar lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12852': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12852', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12852', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'children': [], 'synonymLabels': ['Posterior external vertebral venous plexus'], 'label': 'posterior external vertebral venous plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12897': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12897', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12897', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of second thoracic nerve'], 'label': 'ventral root of the second thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12898': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12898', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12898', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of third thoracic nerve'], 'label': 'ventral root of the third thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12899': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12899', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12899', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fourth thoracic nerve'], 'label': 'ventral root of the fourth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12900': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12900', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12900', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fifth thoracic nerve'], 'label': 'ventral root of the fifth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12901': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12901', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12901', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of sixth thoracic nerve'], 'label': 'ventral root of the sixth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12902', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12902', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of seventh thoracic nerve'], 'label': 'ventral root of the seventh thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12903': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12903', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12903', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of eighth thoracic nerve'], 'label': 'ventral root of the eighth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12904': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12904', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12904', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of ninth thoracic nerve'], 'label': 'ventral root of the ninth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12905': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12905', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12905', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of tenth thoracic nerve'], 'label': 'ventral root of the tenth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12906': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12906', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12906', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of eleventh thoracic nerve'], 'label': 'ventral root of the eleventh thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12907': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12907', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12907', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of twelfth thoracic nerve'], 'label': 'ventral root of the twelfth thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12948': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12948', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12948', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of first cervical nerve'], 'label': 'ventral root of the first cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12949': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12949', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12949', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of second cervical nerve'], 'label': 'ventral root of the second cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12950': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12950', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12950', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of third cervical nerve'], 'label': 'ventral root of the third cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12951': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12951', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12951', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fourth cervical nerve'], 'label': 'ventral root of the fourth cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12952': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12952', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12952', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fifth cervical nerve'], 'label': 'ventral root of the fifth cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12953': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12953', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12953', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of sixth cervical nerve'], 'label': 'ventral root of the sixth cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12954': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12954', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12954', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of seventh cervical nerve'], 'label': 'ventral root of the seventh cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12955', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of eighth cervical nerve'], 'label': 'ventral root of the eighth cervical spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12956': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12956', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12956', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of first lumbar nerve'], 'label': 'ventral root of the first lumbar spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12957': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12957', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12957', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of second lumbar nerve'], 'label': 'ventral root of the second lumbar spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12958': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12958', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12958', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of third lumbar nerve'], 'label': 'ventral root of the third lumbar spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12959': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12959', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12959', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fourth lumbar nerve'], 'label': 'ventral root of the fourth lumbar spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12960': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12960', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12960', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fifth lumbar nerve'], 'label': 'ventral root of the fifth lumbar spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12961': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12961', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12961', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of first sacral nerve'], 'label': 'ventral root of the first sacral spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of second sacral nerve'], 'label': 'ventral root of the second sacral spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12963': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12963', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12963', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of third sacral nerve'], 'label': 'ventral root of the third sacral spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12964', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fourth sacral nerve'], 'label': 'ventral root of the fourth sacral spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma12965': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma12965', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma12965', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of fifth sacral nerve'], 'label': 'ventral root of the fifth sacral spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13279', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13279', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_apicoanterior-trunk-of-left-pulmonary-artery', 'children': [], 'synonymLabels': ['Left anterior segmental artery'], 'label': 'anterior segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13281': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13281', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13281', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_apicoanterior-trunk-of-left-pulmonary-artery', 'children': [], 'synonymLabels': ['Apicoposterior segmental artery'], 'label': 'apicoposterior segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13304': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13304', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13304', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Head of humerus'], 'label': 'head of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13305': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13305', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13305', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Diaphysis of humerus'], 'label': 'shaft of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13379', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13379', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'children': [], 'synonymLabels': ['Rhomboid major'], 'label': 'rhomboid major muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13380': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13380', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13380', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'children': [], 'synonymLabels': ['Rhomboid minor'], 'label': 'rhomboid minor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13385': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13385', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13385', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle', 'children': [], 'synonymLabels': ['Scalenus anterior'], 'label': 'scalenus anterior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13387': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13387', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13387', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle', 'children': [], 'synonymLabels': ['Scalenus posterior'], 'label': 'scalenus posterior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13401', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13401', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-back-muscle', 'children': [], 'synonymLabels': ['Serratus posterior superior'], 'label': 'serratus posterior superior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13402': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13402', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13402', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-back-muscle', 'children': [], 'synonymLabels': ['Serratus posterior inferior'], 'label': 'serratus posterior inferior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13410': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13410', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13410', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001482', 'children': [], 'synonymLabels': ['Subclavius'], 'label': 'subclavius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13460', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13460', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001128', 'children': [], 'synonymLabels': ['Sternal head of sternocleidomastoid'], 'label': 'sternal head of sternocleidomastoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13482': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13482', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13482', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Second thoracic vertebral foramen'], 'label': 'vertebral foramen of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13483', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Third thoracic vertebral foramen'], 'label': 'vertebral foramen of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13484': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13484', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13484', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Fourth thoracic vertebral foramen'], 'label': 'vertebral foramen of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13485': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13485', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13485', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Fifth thoracic vertebral foramen'], 'label': 'vertebral foramen of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13486': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13486', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13486', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Sixth thoracic vertebral foramen'], 'label': 'vertebral foramen of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13487': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13487', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13487', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Seventh thoracic vertebral foramen'], 'label': 'vertebral foramen of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13488', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13488', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Eighth thoracic vertebral foramen'], 'label': 'vertebral foramen of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13489': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13489', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13489', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Ninth thoracic vertebral foramen'], 'label': 'vertebral foramen of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13490': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13490', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13490', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': ['Tenth thoracic vertebral foramen'], 'label': 'vertebral foramen of tenth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13491': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13491', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13491', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': ['Eleventh thoracic vertebral foramen'], 'label': 'vertebral foramen of eleventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13492', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': ['Twelfth thoracic vertebral foramen'], 'label': 'vertebral foramen of twelfth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma13610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma13610', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma13610', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': ['Inferior costal facet of body of ninth thoracic vertebra'], 'label': 'inferior costal facet of ninth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14187': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14187', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14187', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-extrathoracic-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_circumflex-lymphatic-channel', 'http://purl.org/sig/ont/fma/fma234863'], 'synonymLabels': ['Subscapular lymph node'], 'label': 'subscapular lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14290': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14290', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14290', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'children': [], 'synonymLabels': ['Accessory vertebral vein'], 'label': 'accessory vertebral vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14296': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14296', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14296', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'children': [], 'synonymLabels': ['Anterior vertebral vein'], 'label': 'anterior vertebral vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14319', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14319', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'children': [], 'synonymLabels': ['Suprascapular vein'], 'label': 'suprascapular vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14324', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14324', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007157', 'children': [], 'synonymLabels': ['Superior laryngeal vein'], 'label': 'superior laryngeal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14342': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14342', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14342', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': ['Right ovarian vein'], 'label': 'right ovarian vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14347': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14347', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14347', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001142', 'children': [], 'synonymLabels': ['Left ovarian vein'], 'label': 'left ovarian vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14517': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14517', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14517', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001069', 'children': [], 'synonymLabels': ['Neck of pancreas'], 'label': 'neck of pancreas'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14738': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14738', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14738', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right first lumbar artery'], 'label': 'right lumbar artery 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14739': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14739', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14739', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right second lumbar artery'], 'label': 'right lumbar artery 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14740': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14740', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14740', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right third lumbar artery'], 'label': 'right lumbar artery 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14741': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14741', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14741', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right fourth lumbar artery'], 'label': 'right lumbar artery 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14742': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14742', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14742', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left first lumbar artery'], 'label': 'left lumbar artery 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14743': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14743', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14743', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left second lumbar artery'], 'label': 'left lumbar artery 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14744': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14744', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14744', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left third lumbar artery'], 'label': 'left lumbar artery 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14745': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14745', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14745', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left fourth lumbar artery'], 'label': 'left lumbar artery 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14746': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14746', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14746', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right inferior phrenic artery'], 'label': 'right inferior phrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14747': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14747', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14747', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left inferior phrenic artery'], 'label': 'left inferior phrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14755': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14755', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14755', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right middle suprarenal artery'], 'label': 'right middle suprarenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14756': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14756', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14756', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left middle suprarenal artery'], 'label': 'left middle suprarenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14762': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14762', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14762', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right ovarian artery'], 'label': 'right ovarian artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14763': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14763', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14763', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left ovarian artery'], 'label': 'left ovarian artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14776': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14776', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14776', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005436', 'children': [], 'synonymLabels': ['Right gastric artery'], 'label': 'right gastric artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14782', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14782', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002070', 'children': [], 'synonymLabels': ['Anterior superior pancreaticoduodenal artery'], 'label': 'anterior superior pancreaticoduodenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14784': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14784', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14784', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002070', 'children': [], 'synonymLabels': ['Posterior superior pancreaticoduodenal artery'], 'label': 'posterior superior pancreaticoduodenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14787': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14787', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14787', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': ['https://purl.org/ccf/ASCTB-TEMP_transverse-pancreatic-artery'], 'synonymLabels': ['Dorsal pancreatic artery'], 'label': 'dorsal pancreatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14792': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14792', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14792', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': [], 'synonymLabels': ['Great pancreatic artery'], 'label': 'greater pancreatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14793': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14793', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14793', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': [], 'synonymLabels': ['Caudal pancreatic artery'], 'label': 'caudal pancreatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14794': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14794', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14794', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': [], 'synonymLabels': ['Short gastric artery'], 'label': 'short gastric artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14816': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14816', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14816', 'parent': 'http://purl.org/sig/ont/fma/fma14820', 'children': [], 'synonymLabels': ['Anterior cecal artery'], 'label': 'anterior cecal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14817': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14817', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14817', 'parent': 'http://purl.org/sig/ont/fma/fma14820', 'children': [], 'synonymLabels': ['Posterior cecal artery'], 'label': 'posterior cecal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14818': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14818', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14818', 'parent': 'http://purl.org/sig/ont/fma/fma14819', 'children': [], 'synonymLabels': ['Appendicular artery'], 'label': 'appendicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14819': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14819', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14819', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001197', 'children': ['http://purl.org/sig/ont/fma/fma14818'], 'synonymLabels': ['Ileal branch of inferior branch of ileocolic artery'], 'label': 'ileal branch of ileocolic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14820': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14820', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14820', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001197', 'children': ['http://purl.org/sig/ont/fma/fma14816', 'http://purl.org/sig/ont/fma/fma14817'], 'synonymLabels': ['Ascending branch of inferior branch of ileocolic artery'], 'label': 'colic branch of ileocolic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14824': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14824', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14824', 'parent': 'http://purl.org/sig/ont/fma/fma14828', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-colon'], 'synonymLabels': ['Marginal colic artery'], 'label': 'marginal artery of drummond'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14828': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14828', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14828', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410022', 'children': ['http://purl.org/sig/ont/fma/fma14824', 'https://purl.org/ccf/ASCTB-TEMP_meandering-mesenteric-artery'], 'synonymLabels': ['Ascending branch of left colic artery'], 'label': 'ascending branch of left colic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14829': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14829', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14829', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410022', 'children': [], 'synonymLabels': ['Descending branch of left colic artery'], 'label': 'descending branch of left colic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14835': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14835', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14835', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015482', 'children': [], 'synonymLabels': ['Cystic artery'], 'label': 'cystic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14902', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14902', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Right fifth lumbar artery'], 'label': 'right lumbar artery 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14903': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14903', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14903', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001516', 'children': [], 'synonymLabels': ['Left fifth lumbar artery'], 'label': 'left lumbar artery 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14928': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14928', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14928', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'children': [], 'synonymLabels': ['Descending part of duodenum'], 'label': 'descending duodenum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14929': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14929', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14929', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'children': [], 'synonymLabels': ['Horizontal part of duodenum'], 'label': 'inferior duodenum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14930': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14930', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14930', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'children': [], 'synonymLabels': ['Ascending part of duodenum'], 'label': 'ascending duodenum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma14966': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma14966', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma14966', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002108', 'children': [], 'synonymLabels': ['Distal part of ileum'], 'label': 'terminal ileum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15390', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15390', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003713', 'children': [], 'synonymLabels': ['Left gastroepiploic vein'], 'label': 'left gastroepiploic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15393': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15393', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15393', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001215', 'children': [], 'synonymLabels': ['Superior rectal vein'], 'label': 'superior rectal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15395': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15395', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15395', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001215', 'children': [], 'synonymLabels': ['Sigmoid vein'], 'label': 'sigmoid vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15397', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15397', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001138', 'children': ['http://purl.org/sig/ont/fma/fma0329297'], 'synonymLabels': ['Right gastroepiploic vein'], 'label': 'right gastroepiploic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15404': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15404', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15404', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014691', 'children': [], 'synonymLabels': ['Prepyloric vein'], 'label': 'prepyloric vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15414', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15414', 'parent': 'http://purl.org/sig/ont/fma/fma82706', 'children': [], 'synonymLabels': ['Right portal vein'], 'label': 'right hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15415': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15415', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15415', 'parent': 'http://purl.org/sig/ont/fma/fma15425', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001639'], 'synonymLabels': ['Left portal vein'], 'label': 'left hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15420': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15420', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15420', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein-2'], 'synonymLabels': ['Anterior superior segmental branch of right portal vein'], 'label': 'anterior superior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15421': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15421', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15421', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein'], 'synonymLabels': ['Anterior inferior segmental branch of right portal vein'], 'label': 'anterior inferior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15423': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15423', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15423', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein-2'], 'synonymLabels': ['Posterior superior segmental branch of right portal vein'], 'label': 'posterior superior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15424': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15424', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15424', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein'], 'synonymLabels': ['Posterior inferior segmental branch of right portal vein'], 'label': 'posterior inferior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15425': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15425', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15425', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['http://purl.org/sig/ont/fma/fma15415'], 'synonymLabels': ['Caudate lobe branch of left portal vein'], 'label': 'left portal vein of caudate lobe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15428': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15428', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15428', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein-2'], 'synonymLabels': ['Medial superior segmental branch of left portal vein'], 'label': 'medial superior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15429': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15429', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15429', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein'], 'synonymLabels': ['Medial inferior segmental branch of left portal vein'], 'label': 'medial inferior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15431': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15431', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15431', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein-2'], 'synonymLabels': ['Lateral superior segmental branch of left portal vein'], 'label': 'lateral superior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15432': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15432', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15432', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein'], 'synonymLabels': ['Lateral inferior segmental branch of left portal vein'], 'label': 'lateral inferior segmental hepatic portal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15569': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15569', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15569', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', 'children': [], 'synonymLabels': ['Quadratus lumborum'], 'label': 'quadratus lumborum muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15736': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15736', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15736', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001625', 'children': [], 'synonymLabels': ['Conus artery'], 'label': 'conus artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15796': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15796', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15796', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011956', 'children': [], 'synonymLabels': ['Posterior superior segmental tributary of right hepatic vein'], 'label': 'posterior superior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15797': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15797', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15797', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011956', 'children': [], 'synonymLabels': ['Posterior inferior segmental tributary of right hepatic vein'], 'label': 'posterior inferior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15798', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15798', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011956', 'children': [], 'synonymLabels': ['Anterior superior segmental tributary of right hepatic vein'], 'label': 'anterior superior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15800': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15800', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15800', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011957', 'children': [], 'synonymLabels': ['Anterior inferior segmental tributary of middle hepatic vein'], 'label': 'anterior inferior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15801': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15801', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15801', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011957', 'children': [], 'synonymLabels': ['Medial inferior segmental tributary of middle hepatic vein'], 'label': 'medial inferior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15802': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15802', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15802', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011957', 'children': [], 'synonymLabels': ['Medial superior segmental tributary of left hepatic vein'], 'label': 'medial superior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15803': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15803', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15803', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011955', 'children': [], 'synonymLabels': ['Lateral superior segmental tributary of left hepatic vein'], 'label': 'lateral superior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma15804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma15804', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma15804', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011955', 'children': [], 'synonymLabels': ['Lateral inferior segmental tributary of left hepatic vein'], 'label': 'lateral inferior segmental hepatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16094', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16094', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Pedicle of first lumbar vertebra'], 'label': 'pedicle of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16095', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16095', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Pedicle of second lumbar vertebra'], 'label': 'pedicle of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16096', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16096', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Pedicle of third lumbar vertebra'], 'label': 'pedicle of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16097', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16097', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Pedicle of fourth lumbar vertebra'], 'label': 'pedicle of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16098': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16098', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16098', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Pedicle of fifth lumbar vertebra'], 'label': 'pedicle of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16128': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16128', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16128', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Superior articular process of first lumbar vertebra'], 'label': 'superior articular process of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16129': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16129', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16129', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Superior articular process of second lumbar vertebra'], 'label': 'superior articular process of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16130': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16130', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16130', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Superior articular process of third lumbar vertebra'], 'label': 'superior articular process of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16131': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16131', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16131', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Superior articular process of fourth lumbar vertebra'], 'label': 'superior articular process of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16132', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16132', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Superior articular process of fifth lumbar vertebra'], 'label': 'superior articular process of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16137': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16137', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16137', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Inferior articular process of first lumbar vertebra'], 'label': 'inferior articular process of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16138': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16138', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16138', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Inferior articular process of second lumbar vertebra'], 'label': 'inferior articular process of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16139': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16139', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16139', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Inferior articular process of third lumbar vertebra'], 'label': 'inferior articular process of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16140': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16140', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16140', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Inferior articular process of fourth lumbar vertebra'], 'label': 'inferior articular process of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16141': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16141', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16141', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Inferior articular process of fifth lumbar vertebra'], 'label': 'inferior articular process of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16164': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16164', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16164', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Lamina of first lumbar vertebra'], 'label': 'lamina of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16165': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16165', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16165', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Lamina of second lumbar vertebra'], 'label': 'lamina of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16166': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16166', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16166', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Lamina of third lumbar vertebra'], 'label': 'lamina of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16167': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16167', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16167', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Lamina of fourth lumbar vertebra'], 'label': 'lamina of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16168': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16168', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16168', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Lamina of fifth lumbar vertebra'], 'label': 'lamina of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16179': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16179', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16179', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Transverse process of first lumbar vertebra'], 'label': 'transverse process of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16180': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16180', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16180', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Transverse process of second lumbar vertebra'], 'label': 'transverse process of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16181': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16181', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16181', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Transverse process of third lumbar vertebra'], 'label': 'transverse process of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16182', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16182', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Transverse process of fourth lumbar vertebra'], 'label': 'transverse process of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16183', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16183', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Transverse process of fifth lumbar vertebra'], 'label': 'transverse process of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16196', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16196', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Spinous process of first lumbar vertebra'], 'label': 'spinous process of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16197': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16197', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16197', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Spinous process of second lumbar vertebra'], 'label': 'spinous process of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16198', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16198', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Spinous process of third lumbar vertebra'], 'label': 'spinous process of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16199', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16199', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Spinous process of fourth lumbar vertebra'], 'label': 'spinous process of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16200', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16200', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Spinous process of fifth lumbar vertebra'], 'label': 'spinous process of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16215', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16215', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': ['Superior articular process of sacral vertebra'], 'label': 'superior articular process of sacrum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16272': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16272', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16272', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Superior vertebral notch of first lumbar vertebra'], 'label': 'superior vertebral notch of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16273': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16273', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16273', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Superior vertebral notch of second lumbar vertebra'], 'label': 'superior vertebral notch of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16274': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16274', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16274', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Superior vertebral notch of third lumbar vertebra'], 'label': 'superior vertebral notch of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16275': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16275', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16275', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Superior vertebral notch of fourth lumbar vertebra'], 'label': 'superior vertebral notch of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16276', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16276', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Superior vertebral notch of fifth lumbar vertebra'], 'label': 'superior vertebral notch of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16289': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16289', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16289', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Inferior vertebral notch of first lumbar vertebra'], 'label': 'inferior vertebral notch of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16290': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16290', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16290', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Inferior vertebral notch of second lumbar vertebra'], 'label': 'inferior vertebral notch of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16291', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Inferior vertebral notch of third lumbar vertebra'], 'label': 'inferior vertebral notch of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16292': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16292', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16292', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Inferior vertebral notch of fourth lumbar vertebra'], 'label': 'inferior vertebral notch of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16293', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16293', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Inferior vertebral notch of fifth lumbar vertebra'], 'label': 'inferior vertebral notch of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16309', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16309', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Accessory process of first lumbar vertebra'], 'label': 'accessory process of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16310': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16310', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16310', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Accessory process of second lumbar vertebra'], 'label': 'accessory process of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16311': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16311', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16311', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Accessory process of third lumbar vertebra'], 'label': 'accessory process of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16312', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16312', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Accessory process of fourth lumbar vertebra'], 'label': 'accessory process of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16313': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16313', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16313', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Accessory process of fifth lumbar vertebra'], 'label': 'accessory process of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16349': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16349', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16349', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['Articular facet of inferior articular process of first lumbar vertebra'], 'label': 'inferior articular facet of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16350', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16350', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Articular facet of inferior articular process of second lumbar vertebra'], 'label': 'inferior articular facet of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16351': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16351', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16351', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Articular facet of inferior articular process of third lumbar vertebra'], 'label': 'inferior articular facet of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16352': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16352', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16352', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Articular facet of inferior articular process of fourth lumbar vertebra'], 'label': 'inferior articular facet of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16353': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16353', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16353', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Articular facet of inferior articular process of fifth lumbar vertebra'], 'label': 'inferior articular facet of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16482': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16482', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16482', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': ['http://purl.org/sig/ont/fma/fma82921', 'http://purl.org/sig/ont/fma/fma82925', 'http://purl.org/sig/ont/fma/fma20613', 'http://purl.org/sig/ont/fma/fma20619', 'http://purl.org/sig/ont/fma/fma20600', 'http://purl.org/sig/ont/fma/fma20601'], 'synonymLabels': ['Iliohypogastric nerve'], 'label': 'iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16483', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': ['http://purl.org/sig/ont/fma/fma20548', 'http://purl.org/sig/ont/fma/fma82922', 'http://purl.org/sig/ont/fma/fma20611', 'http://purl.org/sig/ont/fma/fma20573', 'http://purl.org/sig/ont/fma/fma20542', 'http://purl.org/sig/ont/fma/fma20506', 'http://purl.org/sig/ont/fma/fma20566', 'http://purl.org/sig/ont/fma/fma20563'], 'synonymLabels': ['Ilioinguinal nerve'], 'label': 'ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16484': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16484', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16484', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': ['http://purl.org/sig/ont/fma/fma16496', 'http://purl.org/sig/ont/fma/fma20560'], 'synonymLabels': ['Genitofemoral nerve'], 'label': 'genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16485': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16485', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16485', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': [], 'synonymLabels': ['Lateral femoral cutaneous nerve'], 'label': 'lateral femoral cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16487': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16487', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16487', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': ['http://purl.org/sig/ont/fma/fma45306', 'http://purl.org/sig/ont/fma/fma45331', 'http://purl.org/sig/ont/fma/fma45307'], 'synonymLabels': ['Obturator nerve'], 'label': 'obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16495': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16495', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16495', 'parent': 'http://purl.org/sig/ont/fma/fma20560', 'children': [], 'synonymLabels': ['Cremaster muscle branch of genital branch of genitofemoral nerve'], 'label': 'cremaster muscle branch of genital branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16496': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16496', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16496', 'parent': 'http://purl.org/sig/ont/fma/fma16484', 'children': ['http://purl.org/sig/ont/fma/fma20661', 'http://purl.org/sig/ont/fma/fma20640'], 'synonymLabels': ['Femoral branch of genitofemoral nerve'], 'label': 'femoral branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16509': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16509', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16509', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Nerve to piriformis'], 'label': 'branch of sacral nerve plexus to piriformis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16510': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16510', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16510', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': ['http://purl.org/sig/ont/fma/fma80195', 'http://purl.org/sig/ont/fma/fma80192', 'http://purl.org/sig/ont/fma/fma80189'], 'synonymLabels': ['Superior gluteal nerve'], 'label': 'superior gluteal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16511': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16511', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16511', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': ['http://purl.org/sig/ont/fma/fma80206', 'http://purl.org/sig/ont/fma/fma80207', 'http://purl.org/sig/ont/fma/fma80208'], 'synonymLabels': ['Inferior gluteal nerve'], 'label': 'inferior gluteal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16698': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16698', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16698', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of first lumbar nerve'], 'label': 'meningeal branch of first lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16699': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16699', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16699', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of second lumbar nerve'], 'label': 'meningeal branch of second lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16700': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16700', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16700', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of third lumbar nerve'], 'label': 'meningeal branch of third lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16701': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16701', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16701', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fourth lumbar nerve'], 'label': 'meningeal branch of fourth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16702': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16702', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16702', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fifth lumbar nerve'], 'label': 'meningeal branch of fifth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16713': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16713', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16713', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of first sacral nerve'], 'label': 'recurrent meningeal branch of first sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16714', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16714', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of second sacral nerve'], 'label': 'recurrent meningeal branch of second sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16715', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16715', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of third sacral nerve'], 'label': 'recurrent meningeal branch of third sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16716', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16716', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fourth sacral nerve'], 'label': 'recurrent meningeal branch of fourth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma16717': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma16717', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma16717', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fifth sacral nerve'], 'label': 'recurrent meningeal branch of fifth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma17561': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma17561', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma17561', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-anterior-fundus-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-fundus-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-fundus-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-fundus-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-fundus-of-uterus', 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-fundus-of-uterus'], 'synonymLabels': ['Fundus of uterus'], 'label': 'fundus of uterus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18652': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18652', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18652', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001145', 'http://purl.obolibrary.org/obo/UBERON_0010185'], 'synonymLabels': ['Hilum of ovary'], 'label': 'hilum of ovary'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18713': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18713', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18713', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': [], 'synonymLabels': ['Corpus luteum of pregnancy'], 'label': 'corpus luteum of pregnancy'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18826': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18826', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18826', 'parent': 'http://purl.org/sig/ont/fma/fma20966', 'children': [], 'synonymLabels': ['Middle rectal artery'], 'label': 'middle rectal artery #2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18832': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18832', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18832', 'parent': 'http://purl.org/sig/ont/fma/fma69797', 'children': [], 'synonymLabels': ['Vaginal artery'], 'label': 'vaginal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18849', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18849', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001313', 'children': [], 'synonymLabels': ['Lumbar part of iliolumbar artery'], 'label': 'lumbar branch of iliolumbar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18850': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18850', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18850', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001313', 'children': [], 'synonymLabels': ['Iliac part of iliolumbar artery'], 'label': 'iliac branch of iliolumbar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18855': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18855', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18855', 'parent': 'http://purl.org/sig/ont/fma/fma69798', 'children': [], 'synonymLabels': ['Lateral sacral artery'], 'label': 'lateral sacral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18871': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18871', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18871', 'parent': 'http://purl.org/sig/ont/fma/fma69797', 'children': [], 'synonymLabels': ['Inferior gluteal artery'], 'label': 'inferior gluteal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18893': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18893', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18893', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['Middle rectal vein'], 'label': 'middle hemorrhoidal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18896': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18896', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18896', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['Uterine vein'], 'label': 'uterine vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18905': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18905', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18905', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['Lateral sacral vein'], 'label': 'lateral sacral vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18908': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18908', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18908', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['Superior gluteal vein'], 'label': 'superior gluteal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma18911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma18911', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma18911', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001317', 'children': [], 'synonymLabels': ['Inferior gluteal vein'], 'label': 'inferior gluteal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma19035': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma19035', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma19035', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001322', 'children': ['http://purl.org/sig/ont/fma/fma80151', 'http://purl.org/sig/ont/fma/fma80085', 'http://purl.org/sig/ont/fma/fma45403', 'http://purl.org/sig/ont/fma/fma44692', 'http://purl.org/sig/ont/fma/fma44724', 'http://purl.org/sig/ont/fma/fma44710', 'http://purl.org/sig/ont/fma/fma44716', 'http://purl.org/sig/ont/fma/fma44687', 'http://purl.org/sig/ont/fma/fma80101', 'http://purl.org/sig/ont/fma/fma80098', 'http://purl.org/sig/ont/fma/fma44691', 'http://purl.org/sig/ont/fma/fma44701', 'http://purl.org/sig/ont/fma/fma44700', 'http://purl.org/sig/ont/fma/fma80171', 'http://purl.org/sig/ont/fma/fma52186', 'http://purl.org/sig/ont/fma/fma44690', 'http://purl.org/sig/ont/fma/fma80104', 'http://purl.org/sig/ont/fma/fma44741', 'http://purl.obolibrary.org/obo/UBERON_0015488', 'http://purl.org/sig/ont/fma/fma44688', 'http://purl.org/sig/ont/fma/fma44722'], 'synonymLabels': ['Tibial nerve'], 'label': 'tibial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma19038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma19038', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma19038', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035768', 'children': [], 'synonymLabels': ['Anococcygeal nerve'], 'label': 'anococcygeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma19039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma19039', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma19039', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001322', 'children': ['http://purl.org/sig/ont/fma/fma44772', 'http://purl.org/sig/ont/fma/fma45404', 'http://purl.org/sig/ont/fma/fma44771', 'http://purl.org/sig/ont/fma/fma44793', 'http://purl.org/sig/ont/fma/fma44697', 'http://purl.org/sig/ont/fma/fma44699', 'http://purl.org/sig/ont/fma/fma77602'], 'synonymLabels': ['Common fibular nerve'], 'label': 'common fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma19040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma19040', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma19040', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Perforating cutaneous nerve'], 'label': 'perforating cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma19731': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma19731', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma19731', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': ['Superficial transverse perineal muscle'], 'label': 'superficial transverse perineal muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma19732': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma19732', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma19732', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': ['Deep transverse perineal muscle'], 'label': 'deep transverse perineal muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20506': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20506', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20506', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Mons pubis branch of ilioinguinal nerve'], 'label': 'mons pubis branch of ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20542': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20542', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20542', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Labium majus branch of ilioinguinal nerve'], 'label': 'labium majus branch of ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20548': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20548', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20548', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Branch of ilioinguinal nerve to internal oblique'], 'label': 'branch of ilioinguinal nerve to internal oblique'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20557': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20557', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20557', 'parent': 'http://purl.org/sig/ont/fma/fma20560', 'children': [], 'synonymLabels': ['Scrotal branch of genital branch of genitofemoral nerve'], 'label': 'scrotal branch of genital branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20560': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20560', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20560', 'parent': 'http://purl.org/sig/ont/fma/fma16484', 'children': ['http://purl.org/sig/ont/fma/fma16495', 'http://purl.org/sig/ont/fma/fma20656', 'http://purl.org/sig/ont/fma/fma20653', 'http://purl.org/sig/ont/fma/fma20557'], 'synonymLabels': ['Genital branch of genitofemoral nerve'], 'label': 'genital branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20563': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20563', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20563', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Scrotal branch of ilioinguinal nerve'], 'label': 'scrotal branch of ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20566': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20566', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20566', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Penile root branch of ilioinguinal nerve'], 'label': 'penile root branch of ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20573': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20573', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20573', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Cutaneous branch of ilioinguinal nerve'], 'label': 'cutaneous branch of ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20578': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20578', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20578', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': [], 'synonymLabels': ['Nerve to quadratus lumborum'], 'label': 'muscular branch of lumbar nerve plexus to quadratus lumborum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20579': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20579', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20579', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': [], 'synonymLabels': ['Nerve to psoas minor'], 'label': 'muscular branch of lumbar plexus to psoas minor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20580': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20580', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20580', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': [], 'synonymLabels': ['Nerve to psoas major'], 'label': 'muscular branch of lumbar plexus to psoas major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20600': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20600', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20600', 'parent': 'http://purl.org/sig/ont/fma/fma16482', 'children': ['http://purl.org/sig/ont/fma/fma20649', 'http://purl.org/sig/ont/fma/fma20625', 'http://purl.org/sig/ont/fma/fma20623'], 'synonymLabels': ['Hypogastric branch of iliohypogastric nerve'], 'label': 'hypogastric branch of iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20601': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20601', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20601', 'parent': 'http://purl.org/sig/ont/fma/fma16482', 'children': [], 'synonymLabels': ['Iliac branch of iliohypogastric nerve'], 'label': 'iliac branch of iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20611': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20611', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20611', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Communicating branch of ilioinguinal nerve with iliohypogastric nerve'], 'label': 'communicating branch of ilioinguinal nerve with iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20613': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20613', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20613', 'parent': 'http://purl.org/sig/ont/fma/fma16482', 'children': [], 'synonymLabels': ['Communicating branch of iliohypogastric nerve with ilioinguinal nerve'], 'label': 'communicating branch of iliohypogastric nerve with ilioinguinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20619', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20619', 'parent': 'http://purl.org/sig/ont/fma/fma16482', 'children': [], 'synonymLabels': ['Communicating branch of iliohypogastric nerve with subcostal nerve'], 'label': 'communicating branch of iliohypogastric nerve with subcostal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20623', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20623', 'parent': 'http://purl.org/sig/ont/fma/fma20600', 'children': [], 'synonymLabels': ['Transversus abdominis branch of hypogastric branch of iliohypogastric nerve'], 'label': 'transversus abdominis branch of hypogastric branch of iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20625': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20625', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20625', 'parent': 'http://purl.org/sig/ont/fma/fma20600', 'children': [], 'synonymLabels': ['Internal oblique branch of hypogastric branch of iliohypogastric nerve'], 'label': 'internal oblique branch of hypogastric branch of iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20640': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20640', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20640', 'parent': 'http://purl.org/sig/ont/fma/fma16496', 'children': [], 'synonymLabels': ['Cutaneous branch of femoral branch of genitofemoral nerve'], 'label': 'cutaneous branch of femoral branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20649': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20649', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20649', 'parent': 'http://purl.org/sig/ont/fma/fma20600', 'children': [], 'synonymLabels': ['Cutaneous branch of hypogastric branch of iliohypogastric nerve'], 'label': 'cutaneous branch of hypogastric branch of iliohypogastric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20653': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20653', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20653', 'parent': 'http://purl.org/sig/ont/fma/fma20560', 'children': [], 'synonymLabels': ['Mons pubis branch of genital branch of genitofemoral nerve'], 'label': 'mons pubis branch of genital branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20656': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20656', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20656', 'parent': 'http://purl.org/sig/ont/fma/fma20560', 'children': [], 'synonymLabels': ['Labium majus branch of genital branch of genitofemoral nerve'], 'label': 'labium majus branch of genital branch of genitofemoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20661': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20661', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20661', 'parent': 'http://purl.org/sig/ont/fma/fma16496', 'children': [], 'synonymLabels': ['Communicating branch of femoral branch of genitofemoral nerve with intermediate femoral cutaneous nerve'], 'label': 'communicating branch of femoral branch of genitofemoral nerve with intermediate femoral cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20701': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20701', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20701', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001354', 'children': [], 'synonymLabels': ['Trunk of pubic part of inferior epigastric artery'], 'label': 'pubic branch of inferior epigastric artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20798', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20798', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001355', 'children': ['http://purl.org/sig/ont/fma/fma20804', 'http://purl.org/sig/ont/fma/fma20805'], 'synonymLabels': ['Lateral circumflex femoral artery'], 'label': 'lateral femoral circumflex artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20804', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20804', 'parent': 'http://purl.org/sig/ont/fma/fma20798', 'children': [], 'synonymLabels': ['Ascending branch of lateral circumflex femoral artery'], 'label': 'ascending branch of lateral femoral circumflex artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20805', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20805', 'parent': 'http://purl.org/sig/ont/fma/fma20798', 'children': [], 'synonymLabels': ['Descending branch of lateral circumflex femoral artery'], 'label': 'descending branch of lateral femoral circumflex artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20811': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20811', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20811', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001356', 'children': [], 'synonymLabels': ['Ascending branch of medial circumflex femoral artery'], 'label': 'ascending branch of medial circumflex femoral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20840', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001358', 'children': [], 'synonymLabels': ['Transverse part of perineal artery'], 'label': 'transverse perineal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20853': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20853', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20853', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': [], 'synonymLabels': ['Posterior scrotal artery'], 'label': 'posterior scrotal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20886': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20886', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20886', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007315', 'children': [], 'synonymLabels': ['Posterior labial artery'], 'label': 'posterior labial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma20966': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma20966', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma20966', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001311', 'children': ['http://purl.org/sig/ont/fma/fma18826', 'https://purl.org/ccf/ASCTB-TEMP_prostatic-arteriole', 'https://purl.org/ccf/ASCTB-TEMP_seminal-vesicle-arterial-branches-of-prostatic-artery'], 'synonymLabels': ['Prostatic part of inferior vesical artery'], 'label': 'prostatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21120': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21120', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21120', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001315', 'children': [], 'synonymLabels': ['Superficial part of superior gluteal artery'], 'label': 'superficial superior gluteal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21121': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21121', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21121', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001315', 'children': [], 'synonymLabels': ['Deep part of superior gluteal artery'], 'label': 'deep superior gluteal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21200', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21200', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001316', 'children': [], 'synonymLabels': ['Pubic vein'], 'label': 'pubic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21242', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21242', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018252', 'children': [], 'synonymLabels': ['Inferior rectal vein'], 'label': 'inferior rectal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21254', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21254', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018252', 'children': [], 'synonymLabels': ['Posterior scrotal vein'], 'label': 'posterior scrotal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21387': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21387', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21387', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': ['Right common iliac vein'], 'label': 'right common iliac vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21388': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21388', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21388', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': ['Left common iliac vein'], 'label': 'left common iliac vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21847', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21847', 'parent': 'http://purl.org/sig/ont/fma/fma45337', 'children': [], 'synonymLabels': ['Perineal branch of posterior femoral cutaneous nerve'], 'label': 'perineal branch of posterior femoral cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21865': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21865', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21865', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011390', 'children': ['http://purl.org/sig/ont/fma/fma29371', 'http://purl.org/sig/ont/fma/fma29368', 'http://purl.org/sig/ont/fma/fma21886', 'http://purl.org/sig/ont/fma/fma21885', 'http://purl.org/sig/ont/fma/fma21884', 'http://purl.org/sig/ont/fma/fma21916'], 'synonymLabels': ['Inferior rectal nerve'], 'label': 'inferior rectal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21866': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21866', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21866', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011390', 'children': ['http://purl.org/sig/ont/fma/fma21897', 'http://purl.org/sig/ont/fma/fma82942', 'http://purl.org/sig/ont/fma/fma21899', 'http://purl.org/sig/ont/fma/fma21900', 'http://purl.org/sig/ont/fma/fma21898', 'http://purl.org/sig/ont/fma/fma21868', 'http://purl.org/sig/ont/fma/fma21867', 'http://purl.org/sig/ont/fma/fma82945', 'http://purl.org/sig/ont/fma/fma21896'], 'synonymLabels': ['Perineal nerve'], 'label': 'perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21867': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21867', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21867', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Posterior scrotal nerve'], 'label': 'posterior scrotal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21868': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21868', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21868', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': ['http://purl.org/sig/ont/fma/fma22049', 'http://purl.org/sig/ont/fma/fma22051'], 'synonymLabels': ['Posterior labial nerve'], 'label': 'posterior labial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21869': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21869', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21869', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011390', 'children': [], 'synonymLabels': ['Dorsal nerve of penis'], 'label': 'dorsal nerve of penis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21870': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21870', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21870', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011390', 'children': [], 'synonymLabels': ['Dorsal nerve of clitoris'], 'label': 'dorsal nerve of clitoris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21884': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21884', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21884', 'parent': 'http://purl.org/sig/ont/fma/fma21865', 'children': [], 'synonymLabels': ['Inferior rectal branch to external anal sphincter'], 'label': 'inferior rectal branch to external anal sphincter'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21885': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21885', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21885', 'parent': 'http://purl.org/sig/ont/fma/fma21865', 'children': [], 'synonymLabels': ['Inferior rectal branch to anal canal'], 'label': 'inferior rectal branch to anal canal'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21886': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21886', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21886', 'parent': 'http://purl.org/sig/ont/fma/fma21865', 'children': [], 'synonymLabels': ['Cutaneous branch of inferior rectal nerve'], 'label': 'cutaneous branch of inferior rectal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21896': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21896', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21896', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Superficial transverse perineal muscle branch of perineal nerve'], 'label': 'superficial transverse perineal muscle branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21897': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21897', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21897', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Bulbospongiosus branch of perineal nerve'], 'label': 'bulbospongiosus branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21898': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21898', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21898', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Ischiocavernosus branch of perineal nerve'], 'label': 'ischiocavernosus branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21899': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21899', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21899', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Deep transverse muscle branch of perineal nerve'], 'label': 'deep transverse muscle branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21900': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21900', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21900', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['External urethral sphincter branch of perineal nerve'], 'label': 'external urethral sphincter branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma21916': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma21916', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma21916', 'parent': 'http://purl.org/sig/ont/fma/fma21865', 'children': [], 'synonymLabels': ['Vaginal branch of inferior rectal nerve'], 'label': 'vaginal branch of inferior rectal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22049', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22049', 'parent': 'http://purl.org/sig/ont/fma/fma21868', 'children': [], 'synonymLabels': ['Labium majus branch of posterior labial nerve'], 'label': 'labium majus branch of posterior labial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22051', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22051', 'parent': 'http://purl.org/sig/ont/fma/fma21868', 'children': [], 'synonymLabels': ['Labium minus branch of posterior labial nerve'], 'label': 'labium minus branch of posterior labial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22298', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22298', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['Obturator internus'], 'label': 'obturator internus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22299': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22299', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22299', 'parent': 'http://purl.org/sig/ont/fma/fma22439', 'children': [], 'synonymLabels': ['Obturator externus'], 'label': 'obturator externus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22315', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22315', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['Gluteus medius'], 'label': 'gluteus medius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22321', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22321', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': ['Quadratus femoris'], 'label': 'quadratus femoris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22420': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22420', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22420', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001356', 'children': [], 'synonymLabels': ['Descending branch of medial circumflex femoral artery'], 'label': 'descending branch of medial circumflex femoral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22424': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22424', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22424', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['https://purl.org/ccf/ASCTB-TEMP_articularis-genu-muscle', 'http://purl.obolibrary.org/obo/UBERON_0001369', 'http://purl.org/sig/ont/fma/fma22430', 'http://purl.obolibrary.org/obo/UBERON_0001373', 'http://purl.org/sig/ont/fma/fma22433'], 'synonymLabels': ['Muscle of anterior compartment of thigh'], 'label': 'anterior compartment of thigh muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22427': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22427', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22427', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001374', 'http://purl.obolibrary.org/obo/UBERON_0001381', 'http://purl.obolibrary.org/obo/UBERON_0001375'], 'synonymLabels': ['Muscle of posterior compartment of thigh'], 'label': 'posterior compartment of thigh muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22430': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22430', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22430', 'parent': 'http://purl.org/sig/ont/fma/fma22424', 'children': ['http://purl.org/sig/ont/fma/fma22436', 'http://purl.org/sig/ont/fma/fma22435'], 'synonymLabels': ['Rectus femoris'], 'label': 'rectus femoris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22433': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22433', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22433', 'parent': 'http://purl.org/sig/ont/fma/fma22424', 'children': [], 'synonymLabels': ['Vastus intermedius'], 'label': 'vastus intermedius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22435': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22435', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22435', 'parent': 'http://purl.org/sig/ont/fma/fma22430', 'children': [], 'synonymLabels': ['Straight head of rectus femoris'], 'label': 'straight head of rectus femoris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22436': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22436', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22436', 'parent': 'http://purl.org/sig/ont/fma/fma22430', 'children': [], 'synonymLabels': ['Reflected head of rectus femoris'], 'label': 'reflected head of rectus femoris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22439', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22439', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000368', 'http://purl.obolibrary.org/obo/UBERON_0000303', 'http://purl.obolibrary.org/obo/UBERON_0000370', 'http://purl.obolibrary.org/obo/UBERON_0000950', 'http://purl.org/sig/ont/fma/fma22299', 'http://purl.obolibrary.org/obo/UBERON_0001382'], 'synonymLabels': ['Muscle of medial compartment of thigh'], 'label': 'medial compartment of thigh muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22472': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22472', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22472', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001386', 'http://purl.org/sig/ont/fma/fma22533', 'http://purl.org/sig/ont/fma/fma22538', 'https://purl.org/ccf/ASCTB-TEMP_tibalis-anterior-muscle'], 'synonymLabels': ['Muscle of anterior compartment of leg'], 'label': 'anterior compartment of leg muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22474': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22474', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22474', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.org/sig/ont/fma/fma51071', 'http://purl.obolibrary.org/obo/UBERON_0001392', 'http://purl.org/sig/ont/fma/fma22543', 'http://purl.obolibrary.org/obo/UBERON_0001391', 'https://purl.org/ccf/ASCTB-TEMP_tibalis-posterior-muscle'], 'synonymLabels': ['Muscle of posterior compartment of leg'], 'label': 'posterior compartment of leg muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22506': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22506', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22506', 'parent': 'http://purl.org/sig/ont/fma/fma0323777', 'children': ['http://purl.org/sig/ont/fma/fma22511', 'http://purl.obolibrary.org/obo/UBERON_0015350'], 'synonymLabels': ['Descending genicular artery'], 'label': 'descending genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22511': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22511', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22511', 'parent': 'http://purl.org/sig/ont/fma/fma22506', 'children': [], 'synonymLabels': ['Articular branch of descending genicular artery'], 'label': 'articular branch of descending genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22533': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22533', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22533', 'parent': 'http://purl.org/sig/ont/fma/fma22472', 'children': [], 'synonymLabels': ['Extensor hallucis longus'], 'label': 'extensor hallucis longus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22536': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22536', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22536', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': ['Middle genicular artery'], 'label': 'middle genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22538': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22538', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22538', 'parent': 'http://purl.org/sig/ont/fma/fma22472', 'children': [], 'synonymLabels': ['Fibularis tertius'], 'label': 'fibularis tertius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22539': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22539', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22539', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-compartmet-of-leg-muscle', 'children': [], 'synonymLabels': ['Fibularis longus'], 'label': 'fibularis longus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22540': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22540', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22540', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-compartmet-of-leg-muscle', 'children': [], 'synonymLabels': ['Fibularis brevis'], 'label': 'fibularis brevis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22543', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22543', 'parent': 'http://purl.org/sig/ont/fma/fma22474', 'children': [], 'synonymLabels': ['Plantaris'], 'label': 'plantaris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22584': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22584', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22584', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': ['Superior medial genicular artery'], 'label': 'medial superior genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22585': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22585', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22585', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': ['Superior lateral genicular artery'], 'label': 'lateral superior genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22680': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22680', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22680', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': [], 'synonymLabels': ['Anterior circumflex humeral artery'], 'label': 'anterior humeral circumflex artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22681': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22681', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22681', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_spinotransversales-muscle', 'children': [], 'synonymLabels': ['Splenius cervicis'], 'label': 'splenius cervicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22684': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22684', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22684', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001394', 'children': [], 'synonymLabels': ['Posterior circumflex humeral artery'], 'label': 'posterior humeral circumflex artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22702': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22702', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22702', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['Iliocostalis lumborum'], 'label': 'iliocostalis lumborum muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22706': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22706', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22706', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001398', 'children': [], 'synonymLabels': ['Superior ulnar collateral artery'], 'label': 'superior ulnar collateral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22710': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22710', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22710', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001398', 'children': [], 'synonymLabels': ['Inferior ulnar collateral artery'], 'label': 'inferior ulnar collateral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22714', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22714', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': ['Longissimus capitis'], 'label': 'longissimus capitis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22748': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22748', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22748', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': [], 'synonymLabels': ['Radial recurrent artery'], 'label': 'radial recurrent artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22750': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22750', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22750', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': ['https://purl.org/ccf/ASCTB-TEMP_palmar-carpal-arterial-arch'], 'synonymLabels': ['Palmar carpal branch of radial artery'], 'label': 'palmar carpal branch of radial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22752': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22752', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22752', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': [], 'synonymLabels': ['Superficial palmar branch of radial artery'], 'label': 'superficial palmar branch of radial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22755': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22755', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22755', 'parent': '', 'children': ['http://purl.org/sig/ont/fma/fma0323597', 'http://purl.org/sig/ont/fma/fma0323595', 'http://purl.org/sig/ont/fma/fma0323596'], 'synonymLabels': ['Dorsal carpal branch of radial artery'], 'label': 'dorsal carpal branch of radial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22761', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-digital-artery-of-first-digit-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-second-digit-of-hand'], 'synonymLabels': ['First dorsal metacarpal artery'], 'label': 'first dorsal metacarpal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22763': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22763', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22763', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-second-digit-of-hand'], 'synonymLabels': ['Arteria radialis indicis'], 'label': 'radialis indicis artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22800': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22800', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22800', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': [], 'synonymLabels': ['Anterior ulnar recurrent artery'], 'label': 'anterior ulnar recurrent artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22803': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22803', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22803', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': [], 'synonymLabels': ['Posterior ulnar recurrent artery'], 'label': 'posterior ulnar recurrent artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22806': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22806', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22806', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': ['http://purl.org/sig/ont/fma/fma22810', 'http://purl.org/sig/ont/fma/fma22811'], 'synonymLabels': ['Common interosseous artery'], 'label': 'common interosseous artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22810': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22810', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22810', 'parent': 'http://purl.org/sig/ont/fma/fma22806', 'children': [], 'synonymLabels': ['Anterior interosseous artery'], 'label': 'anterior interosseous artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22811': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22811', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22811', 'parent': 'http://purl.org/sig/ont/fma/fma22806', 'children': [], 'synonymLabels': ['Posterior interosseous artery'], 'label': 'posterior interosseous artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22817': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22817', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22817', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': [], 'synonymLabels': ['Palmar carpal branch of ulnar artery'], 'label': 'palmar carpal branch of ulnar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22820': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22820', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22820', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': ['https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fifth-digit-of-hand'], 'synonymLabels': ['Dorsal carpal branch of ulnar artery'], 'label': 'dorsal carpal branch of ulnar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22824': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22824', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22824', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001406', 'children': [], 'synonymLabels': ['Deep palmar branch of ulnar artery'], 'label': 'deep palmar branch of ulnar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22828': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22828', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22828', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': ['Semispinalis thoracis'], 'label': 'semispinalis thoracis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22829': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22829', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22829', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': ['Semispinalis cervicis'], 'label': 'semispinalis cervicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22830', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22830', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': ['Semispinalis capitis'], 'label': 'semispinalis capitis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22838': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22838', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22838', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': ['https://purl.org/ccf/ASCTB-TEMP_first-palmar-metacarpal-artery', 'https://purl.org/ccf/ASCTB-TEMP_second-palmar-metacarpal-artery', 'https://purl.org/ccf/ASCTB-TEMP_third-palmar-metacarpal-artery'], 'synonymLabels': ['Deep palmar arterial arch'], 'label': 'deep palmar arch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22854': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22854', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22854', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006564', 'children': ['http://purl.org/sig/ont/fma/fma22857', 'http://purl.org/sig/ont/fma/fma23047'], 'synonymLabels': ['First common palmar digital artery'], 'label': 'first common palmar digital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22855': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22855', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22855', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006564', 'children': ['http://purl.org/sig/ont/fma/fma85114', 'http://purl.org/sig/ont/fma/fma85111'], 'synonymLabels': ['Second common palmar digital artery'], 'label': 'second common palmar digital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22857': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22857', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22857', 'parent': 'http://purl.org/sig/ont/fma/fma22854', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-third-digit-of-hand'], 'synonymLabels': ['Lateral proper palmar digital artery of middle finger'], 'label': 'lateral proper palmar digital artery of third digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22911', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22911', 'parent': 'http://purl.org/sig/ont/fma/fma22947', 'children': [], 'synonymLabels': ['Deep palmar venous arch'], 'label': 'deep palmar venous arch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22914': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22914', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22914', 'parent': 'http://purl.org/sig/ont/fma/fma22950', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001412', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-vein-of-fifth-digit-of-hand'], 'synonymLabels': ['Superficial palmar venous arch'], 'label': 'superficial palmar venous arch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22947': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22947', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22947', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001413', 'children': ['http://purl.org/sig/ont/fma/fma22911'], 'synonymLabels': ['Radial vein'], 'label': 'radial vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22950': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22950', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22950', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001413', 'children': ['http://purl.org/sig/ont/fma/fma22914'], 'synonymLabels': ['Ulnar vein'], 'label': 'ulnar vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22954': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22954', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22954', 'parent': 'http://purl.org/sig/ont/fma/fma67977', 'children': ['http://purl.org/sig/ont/fma/fma22958'], 'synonymLabels': ['Dorsal metacarpal vein'], 'label': 'dorsal metacarpal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22958': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22958', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22958', 'parent': 'http://purl.org/sig/ont/fma/fma22954', 'children': [], 'synonymLabels': ['Dorsal digital vein of finger'], 'label': 'dorsal digital vein of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma22967': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma22967', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma22967', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001411', 'children': [], 'synonymLabels': ['Median antebrachial vein'], 'label': 'median antebrachial vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23046': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23046', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23046', 'parent': 'http://purl.org/sig/ont/fma/fma85107', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fourth-digit-of-hand'], 'synonymLabels': ['Medial proper palmar digital artery of ring finger'], 'label': 'medial proper palmar digital artery of fourth digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23047': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23047', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23047', 'parent': 'http://purl.org/sig/ont/fma/fma22854', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-second-digit-of-hand'], 'synonymLabels': ['Medial proper palmar digital artery of index finger'], 'label': 'medial proper palmar digital artery of second digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23048', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23048', 'parent': 'http://purl.org/sig/ont/fma/fma85107', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fifth-digit-of-hand'], 'synonymLabels': ['Lateral proper palmar digital artery of little finger'], 'label': 'lateral proper palmar digital artery of fifth digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23058', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23058', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': [], 'synonymLabels': ['Thoraco-acromial vein'], 'label': 'thoracoacromial vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23062', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23062', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001395', 'children': [], 'synonymLabels': ['Pectoral branch of thoraco-acromial artery'], 'label': 'pectoral branch of thoracoacromial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23065', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23065', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001395', 'children': [], 'synonymLabels': ['Acromial branch of thoraco-acromial artery'], 'label': 'acromial branch of thoracoacromial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23066', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23066', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001395', 'children': [], 'synonymLabels': ['Clavicular branch of thoraco-acromial artery'], 'label': 'clavicular branch of thoracoacromial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23067', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23067', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001395', 'children': [], 'synonymLabels': ['Deltoid branch of thoraco-acromial artery'], 'label': 'deltoid branch of thoracoacromial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23082': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23082', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23082', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': ['Cervical rotator'], 'label': 'rotatores cervicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23083': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23083', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23083', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': ['Thoracic rotator'], 'label': 'rotatores thoracis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23119': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23119', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23119', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001399', 'children': [], 'synonymLabels': ['Medial collateral artery'], 'label': 'medial collateral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23120': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23120', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23120', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001399', 'children': [], 'synonymLabels': ['Radial collateral artery'], 'label': 'radial collateral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23179': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23179', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23179', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001397', 'children': [], 'synonymLabels': ['Circumflex scapular artery'], 'label': 'circumflex scapular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23294': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23294', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23294', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Diaphysis of clavicle'], 'label': 'shaft of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23300', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23300', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Acromial end of clavicle'], 'label': 'acromial end of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23303', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['Clavicular facet of scapula'], 'label': 'clavicular facet of scapula'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23322', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Conoid tubercle of clavicle'], 'label': 'conoid tubercle of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23325': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23325', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23325', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Trapezoid line of clavicle'], 'label': 'trapezoid line of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23334': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23334', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23334', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Sternal articular facet of clavicle'], 'label': 'sternal facet of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23340', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23340', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Acromial articular facet of clavicle'], 'label': 'acromial facet of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23343': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23343', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23343', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001105', 'children': [], 'synonymLabels': ['Subclavian groove of clavicle'], 'label': 'subclavian groove of clavicle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23356': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23356', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23356', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Anatomical neck of humerus'], 'label': 'anatomical neck of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma233577': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma233577', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma233577', 'parent': 'http://purl.org/sig/ont/fma/fma12765', 'children': [], 'synonymLabels': ['Retro-aortic lymph node group'], 'label': 'retroaortic lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23359': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23359', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23359', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Surgical neck of humerus'], 'label': 'surgical neck of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23390', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23390', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Greater tubercle of humerus'], 'label': 'greater tubercle of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23396', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23396', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Intertubercular sulcus of humerus'], 'label': 'intertubercular sulcus of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23418': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23418', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23418', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Deltoid tuberosity of humerus'], 'label': 'deltoid tuberosity of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23435': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23435', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23435', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Medial supracondylar ridge of humerus'], 'label': 'medial supracondylar ridge of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23436': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23436', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23436', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Lateral supracondylar ridge of humerus'], 'label': 'lateral supracondylar ridge of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23441': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23441', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23441', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Medial epicondyle of humerus'], 'label': 'medial epicondyle of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23442', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23442', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': ['Lateral epicondyle of humerus'], 'label': 'lateral epicondyle of humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma234863': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma234863', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma234863', 'parent': 'http://purl.org/sig/ont/fma/fma14187', 'children': [], 'synonymLabels': ['Subscapular lymphatic vessel'], 'label': 'subscapular lymphatic channel'}),\n",
      "  'http://purl.org/sig/ont/fma/fma234912': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma234912', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma234912', 'parent': 'http://purl.org/sig/ont/fma/fma12252', 'children': ['http://purl.obolibrary.org/obo/UBERON_0035279'], 'synonymLabels': ['Supraclavicular lymphatic vessel'], 'label': 'supraclavicular lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma234924': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma234924', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma234924', 'parent': 'http://purl.org/sig/ont/fma/fma71743', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cubital-fossa-lymph-node', 'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node-2', 'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node'], 'synonymLabels': ['Brachial lymphatic vessel'], 'label': 'brachial lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23524': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23524', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23524', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': ['Styloid process of radius'], 'label': 'styloid process of radius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23530': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23530', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23530', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': ['Ulnar notch of radius'], 'label': 'ulnar notch of radius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23618', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23618', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': ['Radial notch of ulna'], 'label': 'radial notch of ulna'}),\n",
      "  'http://purl.org/sig/ont/fma/fma23626': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma23626', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma23626', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': ['Supinator crest of ulna'], 'label': 'supinator crest of ulna'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24239', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24239', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Pedicle of third cervical vertebra'], 'label': 'pedicle of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24242', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24242', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Lamina of third cervical vertebra'], 'label': 'lamina of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24245': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24245', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24245', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Spinous process of third cervical vertebra'], 'label': 'spinous process of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24246', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24246', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Transverse process of third cervical vertebra'], 'label': 'transverse process of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24280': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24280', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24280', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Superior articular process of third cervical vertebra'], 'label': 'superior articular process of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24283': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24283', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24283', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Inferior articular process of third cervical vertebra'], 'label': 'inferior articular process of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24295': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24295', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24295', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Vertebral foramen of third cervical vertebra'], 'label': 'vertebral foramen of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24296': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24296', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24296', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Vertebral foramen of fourth cervical vertebra'], 'label': 'vertebral foramen of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24297': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24297', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24297', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Vertebral foramen of fifth cervical vertebra'], 'label': 'vertebral foramen of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24298', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24298', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Vertebral foramen of sixth cervical vertebra'], 'label': 'vertebral foramen of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24299': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24299', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24299', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Vertebral foramen of seventh cervical vertebra'], 'label': 'vertebral foramen of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24300', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24300', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Transverse foramen of third cervical vertebra'], 'label': 'transverse foramen of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24303', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Transverse foramen of fourth cervical vertebra'], 'label': 'transverse foramen of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24306': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24306', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24306', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Transverse foramen of fifth cervical vertebra'], 'label': 'transverse foramen of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24309', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24309', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Transverse foramen of sixth cervical vertebra'], 'label': 'transverse foramen of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24312', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24312', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Transverse foramen of seventh cervical vertebra'], 'label': 'transverse foramen of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24766': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24766', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24766', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Superior vertebral notch of third cervical vertebra'], 'label': 'superior vertebral notch of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24768': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24768', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24768', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': ['Inferior vertebral notch of third cervical vertebra'], 'label': 'inferior vertebral notch of third cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24827': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24827', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24827', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': ['First lumbar vertebral foramen'], 'label': 'vertebral foramen of first lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24828': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24828', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24828', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': ['Second lumbar vertebral foramen'], 'label': 'vertebral foramen of second lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24829': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24829', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24829', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': ['Third lumbar vertebral foramen'], 'label': 'vertebral foramen of third lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24830', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24830', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': ['Fourth lumbar vertebral foramen'], 'label': 'vertebral foramen of fourth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24831': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24831', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24831', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': ['Fifth lumbar vertebral foramen'], 'label': 'vertebral foramen of fifth lumbar vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24977': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24977', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24977', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001465', 'children': [], 'synonymLabels': ['Right knee'], 'label': 'right knee'}),\n",
      "  'http://purl.org/sig/ont/fma/fma24978': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma24978', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma24978', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001465', 'children': [], 'synonymLabels': ['Left knee'], 'label': 'left knee'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26310': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26310', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26310', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Pedicle of fourth cervical vertebra'], 'label': 'pedicle of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26316', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26316', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Lamina of fourth cervical vertebra'], 'label': 'lamina of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26322', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26322', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Transverse process of fourth cervical vertebra'], 'label': 'transverse process of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26342': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26342', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26342', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Superior articular process of fourth cervical vertebra'], 'label': 'superior articular process of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26348': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26348', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26348', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Inferior articular process of fourth cervical vertebra'], 'label': 'inferior articular process of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26354': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26354', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26354', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Spinous process of fourth cervical vertebra'], 'label': 'spinous process of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26360': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26360', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26360', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Pedicle of fifth cervical vertebra'], 'label': 'pedicle of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26366': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26366', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26366', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Lamina of fifth cervical vertebra'], 'label': 'lamina of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26372': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26372', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26372', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Transverse process of fifth cervical vertebra'], 'label': 'transverse process of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26394': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26394', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26394', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Superior articular process of fifth cervical vertebra'], 'label': 'superior articular process of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26401', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26401', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Inferior articular process of fifth cervical vertebra'], 'label': 'inferior articular process of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26407': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26407', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26407', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Spinous process of fifth cervical vertebra'], 'label': 'spinous process of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26413': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26413', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26413', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Pedicle of sixth cervical vertebra'], 'label': 'pedicle of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26419': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26419', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26419', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Lamina of sixth cervical vertebra'], 'label': 'lamina of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26425': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26425', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26425', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Transverse process of sixth cervical vertebra'], 'label': 'transverse process of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26445': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26445', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26445', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Superior articular process of sixth cervical vertebra'], 'label': 'superior articular process of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26451', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26451', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Inferior articular process of sixth cervical vertebra'], 'label': 'inferior articular process of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26457': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26457', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26457', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Spinous process of sixth cervical vertebra'], 'label': 'spinous process of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26463': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26463', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26463', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Pedicle of seventh cervical vertebra'], 'label': 'pedicle of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26469': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26469', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26469', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Lamina of seventh cervical vertebra'], 'label': 'lamina of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26475': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26475', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26475', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Transverse process of seventh cervical vertebra'], 'label': 'transverse process of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma264945': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma264945', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma264945', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-jejunum', 'children': ['https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-small-intestine'], 'synonymLabels': ['Capillary plexus of mucosa of small intestine'], 'label': 'mucous plexus of small intestine'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26495': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26495', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26495', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Superior articular process of seventh cervical vertebra'], 'label': 'superior articular process of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26501': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26501', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26501', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Inferior articular process of seventh cervical vertebra'], 'label': 'inferior articular process of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26507': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26507', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26507', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Spinous process of seventh cervical vertebra'], 'label': 'spinous process of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26515': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26515', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26515', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Superior vertebral notch of fourth cervical vertebra'], 'label': 'superior vertebral notch of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26518': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26518', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26518', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Superior vertebral notch of fifth cervical vertebra'], 'label': 'superior vertebral notch of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26519': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26519', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26519', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Superior vertebral notch of sixth cervical vertebra'], 'label': 'superior vertebral notch of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26520': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26520', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26520', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Superior vertebral notch of seventh cervical vertebra'], 'label': 'superior vertebral notch of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26527': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26527', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26527', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': ['Inferior vertebral notch of axis'], 'label': 'inferior vertebral notch of second cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26528': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26528', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26528', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': ['Inferior vertebral notch of fourth cervical vertebra'], 'label': 'inferior vertebral notch of fourth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26529': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26529', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26529', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': ['Inferior vertebral notch of fifth cervical vertebra'], 'label': 'inferior vertebral notch of fifth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26530': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26530', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26530', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': ['Inferior vertebral notch of sixth cervical vertebra'], 'label': 'inferior vertebral notch of sixth cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma26531': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma26531', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma26531', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': ['Inferior vertebral notch of seventh cervical vertebra'], 'label': 'inferior vertebral notch of seventh cervical vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma27286': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma27286', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma27286', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle', 'children': [], 'synonymLabels': ['Subcutaneous part of external anal sphincter'], 'label': 'subcutaneous part of external anal sphincter muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma27287': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma27287', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma27287', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle', 'children': [], 'synonymLabels': ['Superficial part of external anal sphincter'], 'label': 'superficial part of external anal sphincter muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma27292': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma27292', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma27292', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle', 'children': [], 'synonymLabels': ['Deep part of external anal sphincter'], 'label': 'deep part of external anal sphincter muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma276073': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma276073', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma276073', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010933', 'children': [], 'synonymLabels': ['Marginal part of orbicularis oris'], 'label': 'marginal part of orbicularis oris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma276805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma276805', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma276805', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': ['https://purl.org/ccf/ASCTB-TEMP_collecting-lymph-trunk-of-lymphatics-of-soft-parts-covering-posterior-thoracic-wall', 'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-trunk-of-principal-axillary-lymph-vessel', 'http://purl.org/sig/ont/fma/fma44313', 'https://purl.org/ccf/ASCTB-TEMP_posterior-extrathoracic-lymph-node'], 'synonymLabels': ['Axillary lymph node'], 'label': 'axillary lymph node #2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma279896': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma279896', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma279896', 'parent': 'http://purl.org/sig/ont/fma/fma9311', 'children': ['https://purl.org/ccf/ASCTB-TEMP_intra-acinar-arteriole'], 'synonymLabels': ['Set of all pulmonary arterioles'], 'label': 'pulmonary arteriole'}),\n",
      "  'http://purl.org/sig/ont/fma/fma280080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma280080', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma280080', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pancreatic-islet-afferent-arteriole', 'children': [], 'synonymLabels': ['Capillary network of pancreatic islet'], 'label': 'pancreatic islet capillary'}),\n",
      "  'http://purl.org/sig/ont/fma/fma280943': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma280943', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma280943', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thymic-arteriole', 'children': [], 'synonymLabels': ['Capillary network of thymus'], 'label': 'thymic capillary'}),\n",
      "  'http://purl.org/sig/ont/fma/fma280962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma280962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma280962', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-arteriole', 'children': ['https://purl.org/ccf/ASCTB-TEMP_branch-of-subpapillary-plexus'], 'synonymLabels': ['Capillary network of skin'], 'label': 'subpapillary plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma280966': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma280966', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma280966', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_prostatic-arteriole', 'children': [], 'synonymLabels': ['Capillary network of prostate'], 'label': 'prostatic capillary'}),\n",
      "  'http://purl.org/sig/ont/fma/fma289670': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma289670', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma289670', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001683', 'children': [], 'synonymLabels': ['Maxillary process of zygomatic bone'], 'label': 'maxillary process of zygomatic bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma29368': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma29368', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma29368', 'parent': 'http://purl.org/sig/ont/fma/fma21865', 'children': [], 'synonymLabels': ['Communicating branch to posterior scrotal nerve'], 'label': 'communicating branch to posterior scrotal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma29371': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma29371', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma29371', 'parent': 'http://purl.org/sig/ont/fma/fma21865', 'children': [], 'synonymLabels': ['Communicating branch to posterior labial nerve'], 'label': 'communicating branch to posterior labial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma296241': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma296241', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma296241', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': ['Superior border of body of scapula'], 'label': 'superior border of scapula'}),\n",
      "  'http://purl.org/sig/ont/fma/fma30438': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma30438', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma30438', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': ['Compressor urethrae'], 'label': 'compressor urethrae muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma30439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma30439', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma30439', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': ['Sphincter urethrovaginalis'], 'label': 'sphincter urethrovaginalis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma31730': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma31730', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma31730', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': ['Auricular surface of sacrum'], 'label': 'auricular surface of sacrum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma31733': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma31733', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma31733', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': ['Articular facet of superior articular process of sacrum'], 'label': 'superior articular facet of sacrum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma31933': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma31933', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma31933', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right bronchial artery'], 'label': 'right bronchial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma321526': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma321526', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma321526', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005168', 'children': [], 'synonymLabels': ['Stellate vein of kidney'], 'label': 'stellate venule of kidney'}),\n",
      "  'http://purl.org/sig/ont/fma/fma321542': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma321542', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma321542', 'parent': 'http://purl.org/sig/ont/fma/fma4869', 'children': [], 'synonymLabels': ['Basivertebral vein'], 'label': 'basivertebral vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma321805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma321805', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma321805', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008465', 'http://purl.obolibrary.org/obo/UBERON_0002962', 'http://purl.obolibrary.org/obo/UBERON_0011012', 'http://purl.org/sig/ont/fma/fma37379'], 'synonymLabels': ['Thenar compartment of hand'], 'label': 'thenar compartment of hand muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma321806': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma321806', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma321806', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['https://purl.org/ccf/ASCTB-TEMP_flexor-digiti-minimi-brevis-muscle', 'https://purl.org/ccf/ASCTB-TEMP_opponens-digiti-minimi-muscle', 'http://purl.obolibrary.org/obo/UBERON_0036172'], 'synonymLabels': ['Hypothenar compartment of hand'], 'label': 'hypothenar compartment of hand muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma322110': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma322110', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma322110', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Modiolus'], 'label': 'modiolus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma322627': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma322627', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma322627', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Lymphatic vessel of internal mammary region'], 'label': 'internal mammary lymphatics #2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma322901': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma322901', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma322901', 'parent': 'http://purl.org/sig/ont/fma/fma3862', 'children': [], 'synonymLabels': ['First diagonal branch of anterior descending branch of left coronary artery'], 'label': 'diagonal branch of left anterior descending artery 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma322902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma322902', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma322902', 'parent': 'http://purl.org/sig/ont/fma/fma3862', 'children': [], 'synonymLabels': ['Second diagonal branch of anterior descending branch of left coronary artery'], 'label': 'diagonal branch of left anterior descending artery 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma322905': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma322905', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma322905', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035422', 'children': [], 'synonymLabels': ['First left marginal artery'], 'label': 'obtuse marginal artery 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma322906': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma322906', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma322906', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035422', 'children': [], 'synonymLabels': ['Second left marginal artery'], 'label': 'obtuse marginal artery 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma323217': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma323217', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma323217', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': [], 'synonymLabels': ['Corpus fibrosum of ovary'], 'label': 'corpus atretica'}),\n",
      "  'http://purl.org/sig/ont/fma/fma323230': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma323230', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma323230', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010933', 'children': [], 'synonymLabels': ['Labial part of orbicularis oris muscle'], 'label': 'labial part of orbicularis oris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma323401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma323401', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma323401', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001549', 'children': [], 'synonymLabels': ['Dorsal digital vein of foot'], 'label': 'dorsal digital vein of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma323948': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma323948', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma323948', 'parent': 'http://purl.org/sig/ont/fma/fma12252', 'children': ['http://purl.org/sig/ont/fma/fma71743'], 'synonymLabels': ['Set of superficial axillary lymph nodes'], 'label': 'axillary vein group lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma323951': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma323951', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma323951', 'parent': 'http://purl.org/sig/ont/fma/fma5841', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-lymph-trunk-of-accompanying-suprarenal-vein', 'http://purl.obolibrary.org/obo/UBERON_0002508', 'http://purl.obolibrary.org/obo/UBERON_0016378', 'http://purl.org/sig/ont/fma/fma71813', 'https://purl.org/ccf/ASCTB-TEMP_left-collecting-lymph-trunk-of-lymphatics-of-ovary', 'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-node-of-common-illiac-lymph-nodes', 'http://purl.obolibrary.org/obo/UBERON_0016402', 'https://purl.org/ccf/ASCTB-TEMP_right-collecting-lymph-trunk-of-lymphatics-of-testicle'], 'synonymLabels': ['Pre-aortic thoracic lymph node group'], 'label': 'preaortic lymph node #2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32527': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32527', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32527', 'parent': 'http://purl.org/sig/ont/fma/fma71439', 'children': [], 'synonymLabels': ['Obliquus capitis superior'], 'label': 'obliquus capitis superior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32528': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32528', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32528', 'parent': 'http://purl.org/sig/ont/fma/fma71439', 'children': [], 'synonymLabels': ['Obliquus capitis inferior'], 'label': 'obliquus capitis inferior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32555': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32555', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32555', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002380', 'children': [], 'synonymLabels': ['Ascending part of trapezius'], 'label': 'ascending part of trapezius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32556': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32556', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32556', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002380', 'children': [], 'synonymLabels': ['Transverse part of trapezius'], 'label': 'transverse part of trapezius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32557': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32557', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32557', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002380', 'children': [], 'synonymLabels': ['Descending part of trapezius'], 'label': 'descending part of trapezius muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32847', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32847', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Diaphysis of femur'], 'label': 'shaft of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32852': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32852', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32852', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Greater trochanter'], 'label': 'greater trochanter of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32853': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32853', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32853', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Lesser trochanter'], 'label': 'lesser trochanter of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32870': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32870', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32870', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Adductor tubercle'], 'label': 'adductor tubercle of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32955', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004333', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of second toe'], 'label': 'base of second proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32958': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32958', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32958', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004324', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of second toe'], 'label': 'base of second middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32961': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32961', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32961', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004316', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of second toe'], 'label': 'base of second distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32964', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004334', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of third toe'], 'label': 'base of third proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32967': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32967', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32967', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004325', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of third toe'], 'label': 'base of third middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32970': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32970', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32970', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004317', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of third toe'], 'label': 'base of third distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32973': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32973', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32973', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004335', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of fourth toe'], 'label': 'base of fourth proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32976': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32976', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32976', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004326', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of fourth toe'], 'label': 'base of fourth middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32979': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32979', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32979', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004318', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of fourth toe'], 'label': 'base of fourth distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32982': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32982', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32982', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004336', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of little toe'], 'label': 'base of fifth proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32985': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32985', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32985', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004327', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of little toe'], 'label': 'base of fifth middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32988': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32988', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32988', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004319', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of little toe'], 'label': 'base of fifth distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32991': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32991', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32991', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004332', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of big toe'], 'label': 'shaft of first proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32994': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32994', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32994', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004315', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of big toe'], 'label': 'shaft of first distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma32997': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma32997', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma32997', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004333', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of second toe'], 'label': 'shaft of second proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33000', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33000', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004324', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of second toe'], 'label': 'shaft of second middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33003', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33003', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004316', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of second toe'], 'label': 'shaft of second distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33006', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33006', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004334', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of third toe'], 'label': 'shaft of third proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33009', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004325', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of third toe'], 'label': 'shaft of third middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33012', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33012', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004317', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of third toe'], 'label': 'shaft of third distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33015', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33015', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004335', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of fourth toe'], 'label': 'shaft of fourth proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33018', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33018', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004326', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of fourth toe'], 'label': 'shaft of fourth middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33021', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33021', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004318', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of fourth toe'], 'label': 'shaft of fourth distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33024', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33024', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004336', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of little toe'], 'label': 'shaft of fifth proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33027', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33027', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004327', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of little toe'], 'label': 'shaft of fifth middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33030': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33030', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33030', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004319', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of little toe'], 'label': 'shaft of fifth distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33033', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33033', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004332', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of big toe'], 'label': 'head of first proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33036', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33036', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004315', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of big toe'], 'label': 'head of first distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33039', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33039', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004333', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of second toe'], 'label': 'head of second proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33048', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33048', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004334', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of third toe'], 'label': 'head of third proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33051', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33051', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004325', 'children': [], 'synonymLabels': ['Distal epiphysis of middle phalanx of third toe'], 'label': 'head of third middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33054', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33054', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004317', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of third toe'], 'label': 'head of third distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33085': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33085', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33085', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004335', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of fourth toe'], 'label': 'head of fourth proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33088', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33088', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004326', 'children': [], 'synonymLabels': ['Distal epiphysis of middle phalanx of fourth toe'], 'label': 'head of fourth middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33091', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33091', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004318', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of fourth toe'], 'label': 'head of fourth distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33100', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33100', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004336', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of little toe'], 'label': 'head of fifth proximal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33103': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33103', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33103', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004327', 'children': [], 'synonymLabels': ['Distal epiphysis of middle phalanx of little toe'], 'label': 'head of fifth middle phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33106', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33106', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004319', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of little toe'], 'label': 'head of fifth distal phalanx of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33125', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33125', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': ['Diaphysis of tibia'], 'label': 'shaft of tibia'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33635': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33635', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33635', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002395', 'children': [], 'synonymLabels': ['Head of talus'], 'label': 'head of talus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33638', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002395', 'children': [], 'synonymLabels': ['Trochlea of talus'], 'label': 'trochlea of talus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33650', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002395', 'children': [], 'synonymLabels': ['Posterior process of talus'], 'label': 'posterior process of talus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33651', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33651', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002395', 'children': [], 'synonymLabels': ['Lateral process of talus'], 'label': 'lateral process of talus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33729': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33729', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33729', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001446', 'children': [], 'synonymLabels': ['Proximal epiphysis of fibula'], 'label': 'head of fibula'}),\n",
      "  'http://purl.org/sig/ont/fma/fma33738': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma33738', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma33738', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001446', 'children': [], 'synonymLabels': ['Diaphysis of fibula'], 'label': 'shaft of fibula'}),\n",
      "  'http://purl.org/sig/ont/fma/fma34677': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma34677', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma34677', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001476', 'children': [], 'synonymLabels': ['Clavicular part of deltoid'], 'label': 'clavicular part of deltoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma34678': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma34678', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma34678', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001476', 'children': [], 'synonymLabels': ['Acromial part of deltoid'], 'label': 'acromial part of deltoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma34679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma34679', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma34679', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001476', 'children': [], 'synonymLabels': ['Spinal part of deltoid'], 'label': 'spinal part of deltoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma34699': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma34699', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma34699', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002381', 'children': [], 'synonymLabels': ['Abdominal part of pectoralis major'], 'label': 'abdominal part of pectoralis major muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma34782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma34782', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma34782', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001451', 'children': [], 'synonymLabels': ['Navicular tuberosity'], 'label': 'tuberosity of navicular'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37025': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37025', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37025', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81307', 'http://purl.org/sig/ont/fma/fma81314', 'http://purl.org/sig/ont/fma/fma81304'], 'synonymLabels': ['Suprascapular nerve'], 'label': 'suprascapular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37379', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37379', 'parent': 'http://purl.org/sig/ont/fma/fma321805', 'children': [], 'synonymLabels': ['Opponens pollicis'], 'label': 'opponens pollicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37382': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37382', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37382', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': ['Abductor digiti minimi of hand'], 'label': 'abductor digiti minimi of hand muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37385': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37385', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37385', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001500', 'children': [], 'synonymLabels': ['Lumbrical of hand'], 'label': 'lumbrical of hand muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37418': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37418', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37418', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001500', 'children': [], 'synonymLabels': ['Dorsal interosseous of hand'], 'label': 'dorsal interosseous of hand muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37452', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37452', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': ['Flexor accessorius'], 'label': 'quadratus plantae muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37453', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37453', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': ['Lumbrical of foot'], 'label': 'lumbrical of foot muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37457': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37457', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37457', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': ['Dorsal interosseous of foot'], 'label': 'dorsal interosseous of foot muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37499': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37499', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37499', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004328', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of index finger'], 'label': 'base of second proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37502': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37502', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37502', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004320', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of index finger'], 'label': 'base of second middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37505': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37505', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37505', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004311', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of index finger'], 'label': 'base of second distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37511': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37511', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37511', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004329', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of middle finger'], 'label': 'base of third proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37514': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37514', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37514', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004321', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of middle finger'], 'label': 'base of third middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37517': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37517', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37517', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004312', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of middle finger'], 'label': 'base of third distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37523': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37523', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37523', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004330', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of ring finger'], 'label': 'base of fourth proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37526': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37526', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37526', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004322', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of ring finger'], 'label': 'base of fourth middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37529': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37529', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37529', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004313', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of ring finger'], 'label': 'base of fourth distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37535': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37535', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37535', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004331', 'children': [], 'synonymLabels': ['Proximal epiphysis of proximal phalanx of little finger'], 'label': 'base of fifth proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37538': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37538', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37538', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004323', 'children': [], 'synonymLabels': ['Proximal epiphysis of middle phalanx of little finger'], 'label': 'base of fifth middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37541': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37541', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37541', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004314', 'children': [], 'synonymLabels': ['Proximal epiphysis of distal phalanx of little finger'], 'label': 'base of fifth distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37557': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37557', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37557', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004328', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of index finger'], 'label': 'shaft of second proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37560': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37560', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37560', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004320', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of index finger'], 'label': 'shaft of second middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37563': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37563', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37563', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004311', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of index finger'], 'label': 'shaft of second distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37569': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37569', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37569', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004329', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of middle finger'], 'label': 'shaft of third proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37572': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37572', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37572', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004321', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of middle finger'], 'label': 'shaft of third middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37575': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37575', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37575', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004312', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of middle finger'], 'label': 'shaft of third distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37581': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37581', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37581', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004330', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of ring finger'], 'label': 'shaft of fourth proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37584': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37584', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37584', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004322', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of ring finger'], 'label': 'shaft of fourth middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37587': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37587', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37587', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004313', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of ring finger'], 'label': 'shaft of fourth distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37593': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37593', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37593', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004331', 'children': [], 'synonymLabels': ['Diaphysis of proximal phalanx of little finger'], 'label': 'shaft of fifth proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37596': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37596', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37596', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004323', 'children': [], 'synonymLabels': ['Diaphysis of middle phalanx of little finger'], 'label': 'shaft of fifth middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37599': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37599', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37599', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004314', 'children': [], 'synonymLabels': ['Diaphysis of distal phalanx of little finger'], 'label': 'shaft of fifth distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37606': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37606', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37606', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004338', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of thumb'], 'label': 'head of first proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37609': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37609', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37609', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004337', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of thumb'], 'label': 'head of first distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37615': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37615', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37615', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004328', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of index finger'], 'label': 'head of second proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37627': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37627', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37627', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004329', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of middle finger'], 'label': 'head of third proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37633': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37633', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37633', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004312', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of middle finger'], 'label': 'head of third distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37639': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37639', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37639', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004330', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of ring finger'], 'label': 'head of fourth proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37642': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37642', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37642', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004322', 'children': [], 'synonymLabels': ['Distal epiphysis of middle phalanx of ring finger'], 'label': 'head of fourth middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37645': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37645', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37645', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004313', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of ring finger'], 'label': 'head of fourth distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37651', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37651', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004331', 'children': [], 'synonymLabels': ['Distal epiphysis of proximal phalanx of little finger'], 'label': 'head of fifth proximal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37654', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004323', 'children': [], 'synonymLabels': ['Distal epiphysis of middle phalanx of little finger'], 'label': 'head of fifth middle phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37657': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37657', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37657', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004314', 'children': [], 'synonymLabels': ['Distal epiphysis of distal phalanx of little finger'], 'label': 'head of fifth distal phalanx of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37670': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37670', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37670', 'parent': 'http://purl.org/sig/ont/fma/fma37711', 'children': ['http://purl.org/sig/ont/fma/fma37683', 'http://purl.org/sig/ont/fma/fma37682'], 'synonymLabels': ['Biceps brachii'], 'label': 'biceps brachii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37682': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37682', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37682', 'parent': 'http://purl.org/sig/ont/fma/fma37670', 'children': [], 'synonymLabels': ['Short head of biceps brachii'], 'label': 'short head of biceps brachii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37683': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37683', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37683', 'parent': 'http://purl.org/sig/ont/fma/fma37670', 'children': [], 'synonymLabels': ['Long head of biceps brachii'], 'label': 'long head of biceps brachii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37692', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37692', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001509', 'children': [], 'synonymLabels': ['Long head of triceps brachii'], 'label': 'long head of triceps brachii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37693': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37693', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37693', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001509', 'children': [], 'synonymLabels': ['Medial head of triceps brachii'], 'label': 'medial head of triceps brachii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37694': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37694', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37694', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001509', 'children': [], 'synonymLabels': ['Lateral head of triceps brachii'], 'label': 'lateral head of triceps brachii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37701': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37701', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37701', 'parent': 'http://purl.org/sig/ont/fma/fma37711', 'children': [], 'synonymLabels': ['Articularis cubiti'], 'label': 'articularis cubiti muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37711', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37711', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.org/sig/ont/fma/fma37701', 'http://purl.org/sig/ont/fma/fma37670', 'http://purl.obolibrary.org/obo/UBERON_0001506', 'http://purl.obolibrary.org/obo/UBERON_0001505'], 'synonymLabels': ['Muscle of anterior compartment of arm'], 'label': 'anterior compartment of arm muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma37712': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma37712', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma37712', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002989', 'http://purl.obolibrary.org/obo/UBERON_0001509'], 'synonymLabels': ['Muscle of posterior compartment of arm'], 'label': 'posterior compartment of arm muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3818': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3818', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3818', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001625', 'children': [], 'synonymLabels': ['Marginal branch of right coronary artery'], 'label': 'right marginal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3823': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3823', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3823', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001625', 'children': [], 'synonymLabels': ['Sinoatrial nodal branch of right coronary artery'], 'label': 'sinoatrial nodal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3835': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3835', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3835', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': [], 'synonymLabels': ['Posterior ventricular branch of right coronary artery'], 'label': 'posterior left ventricular branch of the right coronary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3840', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001625', 'children': ['https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery-2'], 'synonymLabels': ['Posterior interventricular branch of right coronary artery'], 'label': 'posterior descending artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38450': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38450', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38450', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': ['http://purl.org/sig/ont/fma/fma38558', 'http://purl.org/sig/ont/fma/fma38559'], 'synonymLabels': ['Pronator teres'], 'label': 'pronator teres muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38453', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38453', 'parent': 'http://purl.org/sig/ont/fma/fma38456', 'children': [], 'synonymLabels': ['Pronator quadratus'], 'label': 'pronator quadratus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38456': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38456', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38456', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001521', 'http://purl.obolibrary.org/obo/UBERON_0001522', 'http://purl.obolibrary.org/obo/UBERON_0001523', 'http://purl.obolibrary.org/obo/UBERON_0003222', 'http://purl.obolibrary.org/obo/UBERON_0008446', 'http://purl.obolibrary.org/obo/UBERON_0016493', 'http://purl.org/sig/ont/fma/fma38453', 'http://purl.org/sig/ont/fma/fma38450'], 'synonymLabels': ['Muscle of anterior compartment of forearm'], 'label': 'anterior compartment of forearm muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38488', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38488', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': ['http://purl.org/sig/ont/fma/fma38515', 'http://purl.obolibrary.org/obo/UBERON_0011011', 'http://purl.obolibrary.org/obo/UBERON_0001525', 'http://purl.obolibrary.org/obo/UBERON_0001524', 'http://purl.obolibrary.org/obo/UBERON_0001526', 'http://purl.obolibrary.org/obo/UBERON_0007614', 'http://purl.org/sig/ont/fma/fma38500', 'http://purl.org/sig/ont/fma/fma38524', 'http://purl.obolibrary.org/obo/UBERON_0017618', 'http://purl.obolibrary.org/obo/UBERON_0003234', 'http://purl.obolibrary.org/obo/UBERON_0003228'], 'synonymLabels': ['Muscle of posterior compartment of forearm'], 'label': 'posterior compartment of forearm muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38500': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38500', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38500', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['Extensor digitorum'], 'label': 'extensor digitorum muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3851': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3851', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3851', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001625', 'children': [], 'synonymLabels': ['Atrioventricular node branch of right coronary artery'], 'label': 'atrioventicular nodal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38515': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38515', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38515', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['Abductor pollicis longus'], 'label': 'abductor pollicis longus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38524': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38524', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38524', 'parent': 'http://purl.org/sig/ont/fma/fma38488', 'children': [], 'synonymLabels': ['Extensor indicis'], 'label': 'extensor indicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38558': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38558', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38558', 'parent': 'http://purl.org/sig/ont/fma/fma38450', 'children': [], 'synonymLabels': ['Humeral head of pronator teres'], 'label': 'humeral head of pronator teres muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38559': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38559', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38559', 'parent': 'http://purl.org/sig/ont/fma/fma38450', 'children': [], 'synonymLabels': ['Ulnar head of pronator teres'], 'label': 'ulnar head of pronator teres muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3860': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3860', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3860', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': [], 'synonymLabels': ['Diagonal branch of anterior descending branch of left coronary artery', 'left diagonal branch of the left anterior descending artery'], 'label': 'diagonal branch of left anterior descending artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38615': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38615', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38615', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001522', 'children': [], 'synonymLabels': ['Humeral head of flexor carpi ulnaris'], 'label': 'humeral head of flexor carpi ulnaris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38616': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38616', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38616', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001522', 'children': [], 'synonymLabels': ['Ulnar head of flexor carpi ulnaris'], 'label': 'ulnar head of flexor carpi ulnaris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3862': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3862', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3862', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001626', 'children': ['http://purl.org/sig/ont/fma/fma322901', 'http://purl.org/sig/ont/fma/fma322902', 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery'], 'synonymLabels': ['Anterior interventricular branch of left coronary artery'], 'label': 'left anterior descending artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38636', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003222', 'children': [], 'synonymLabels': ['Humero-ulnar head of flexor digitorum superficialis'], 'label': 'humero-ulnar head of flexor digitorum superficialis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma38637': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma38637', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma38637', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003222', 'children': [], 'synonymLabels': ['Radial head of flexor digitorum superficialis'], 'label': 'radial head of flexor digitorum superficialis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3902', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3902', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': [], 'synonymLabels': ['Left marginal artery'], 'label': 'left obtuse marginal branch of the left coronary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma39079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma39079', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma39079', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma65311', 'http://purl.org/sig/ont/fma/fma65312'], 'synonymLabels': ['Medial cutaneous nerve of forearm'], 'label': 'medial cutaneous nerve of forearm'}),\n",
      "  'http://purl.org/sig/ont/fma/fma39080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma39080', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma39080', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Lateral cutaneous nerve of forearm'], 'label': 'lateral cutaneous nerve of forearm'}),\n",
      "  'http://purl.org/sig/ont/fma/fma39145': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma39145', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma39145', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Posterior cutaneous nerve of forearm'], 'label': 'posterior antebrachial cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3964', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': [], 'synonymLabels': ['Pericardiacophrenic artery'], 'label': 'percardiacophrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma39682': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma39682', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma39682', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': ['Interosseous border of radius'], 'label': 'interosseous border of radius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma39685': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma39685', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma39685', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': ['Interosseous border of ulna'], 'label': 'interosseous border of ulna'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3990', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'children': ['http://purl.obolibrary.org/obo/UBERON_0007149', 'http://purl.org/sig/ont/fma/fma10663', 'http://purl.obolibrary.org/obo/UBERON_0012324'], 'synonymLabels': ['Thyrocervical trunk'], 'label': 'thyrocervical trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma3994': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma3994', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma3994', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006198', 'children': [], 'synonymLabels': ['Second posterior intercostal artery'], 'label': 'posterior intercostal artery 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma39978': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma39978', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma39978', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001433', 'children': [], 'synonymLabels': ['Hook of hamate'], 'label': 'hook of hamate'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4146': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4146', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4146', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left first bronchial artery'], 'label': 'superior left bronchial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4147': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4147', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4147', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left second bronchial artery'], 'label': 'inferior left bronchial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4165': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4165', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4165', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right first superior phrenic artery'], 'label': 'right first superior phrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4168': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4168', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4168', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right second superior phrenic artery'], 'label': 'right second superior phrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4170': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4170', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4170', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left first superior phrenic artery'], 'label': 'left first superior phrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4173', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4173', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left second superior phrenic artery'], 'label': 'left second superior phrenic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4176': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4176', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4176', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': ['https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-4'], 'synonymLabels': ['Posterior intercostal artery'], 'label': 'posterior intercostal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4183', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4183', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery', 'children': [], 'synonymLabels': ['Anterior radicular branch of posterior intercostal artery'], 'label': 'anterior radicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4184', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4184', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery', 'children': [], 'synonymLabels': ['Posterior radicular branch of posterior intercostal artery'], 'label': 'posterior radicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4199', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4199', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right third posterior intercostal artery'], 'label': 'right posterior intercostal artery 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4222', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4222', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right fourth posterior intercostal artery'], 'label': 'right posterior intercostal artery 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4245': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4245', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4245', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right fifth posterior intercostal artery'], 'label': 'right posterior intercostal artery 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4268': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4268', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4268', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right sixth posterior intercostal artery'], 'label': 'right posterior intercostal artery 6'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42788': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42788', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42788', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003645', 'children': [], 'synonymLabels': ['Proximal epiphysis of first metacarpal bone'], 'label': 'base of first metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42791': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42791', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42791', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003646', 'children': [], 'synonymLabels': ['Proximal epiphysis of second metacarpal bone'], 'label': 'base of second metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42794': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42794', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42794', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003647', 'children': [], 'synonymLabels': ['Proximal epiphysis of third metacarpal bone'], 'label': 'base of third metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42797': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42797', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42797', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003648', 'children': [], 'synonymLabels': ['Proximal epiphysis of fourth metacarpal bone'], 'label': 'base of fourth metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42800': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42800', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42800', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003649', 'children': [], 'synonymLabels': ['Proximal epiphysis of fifth metacarpal bone'], 'label': 'base of fifth metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42803': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42803', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42803', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003645', 'children': [], 'synonymLabels': ['Distal epiphysis of first metacarpal bone'], 'label': 'head of first metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42806': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42806', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42806', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003646', 'children': [], 'synonymLabels': ['Distal epiphysis of second metacarpal bone'], 'label': 'head of second metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42809': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42809', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42809', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003647', 'children': [], 'synonymLabels': ['Distal epiphysis of third metacarpal bone'], 'label': 'head of third metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42812': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42812', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42812', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003648', 'children': [], 'synonymLabels': ['Distal epiphysis of fourth metacarpal bone'], 'label': 'head of fourth metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42815': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42815', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42815', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003649', 'children': [], 'synonymLabels': ['Distal epiphysis of fifth metacarpal bone'], 'label': 'head of fifth metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42869': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42869', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42869', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003645', 'children': [], 'synonymLabels': ['Diaphysis of first metacarpal bone'], 'label': 'shaft of first metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42872': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42872', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42872', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003646', 'children': [], 'synonymLabels': ['Diaphysis of second metacarpal bone'], 'label': 'shaft of second metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42875': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42875', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42875', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003647', 'children': [], 'synonymLabels': ['Diaphysis of third metacarpal bone'], 'label': 'shaft of third metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42878': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42878', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42878', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003648', 'children': [], 'synonymLabels': ['Diaphysis of fourth metacarpal bone'], 'label': 'shaft of fourth metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42881': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42881', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42881', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003649', 'children': [], 'synonymLabels': ['Diaphysis of fifth metacarpal bone'], 'label': 'shaft of fifth metacarpal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4291', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right seventh posterior intercostal artery'], 'label': 'right posterior intercostal artery 7'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42963': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42963', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42963', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003650', 'children': [], 'synonymLabels': ['Proximal epiphysis of first metatarsal bone'], 'label': 'base of first metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42964': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42964', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42964', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003651', 'children': [], 'synonymLabels': ['Proximal epiphysis of second metatarsal bone'], 'label': 'base of second metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42965': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42965', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42965', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003652', 'children': [], 'synonymLabels': ['Proximal epiphysis of third metatarsal bone'], 'label': 'base of third metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42966': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42966', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42966', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003653', 'children': [], 'synonymLabels': ['Proximal epiphysis of fourth metatarsal bone'], 'label': 'base of fourth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42967': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42967', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42967', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003654', 'children': [], 'synonymLabels': ['Proximal epiphysis of fifth metatarsal bone'], 'label': 'base of fifth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42983': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42983', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42983', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003650', 'children': [], 'synonymLabels': ['Distal epiphysis of first metatarsal bone'], 'label': 'head of first metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42986', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42986', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003651', 'children': [], 'synonymLabels': ['Distal epiphysis of second metatarsal bone'], 'label': 'head of second metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42998': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42998', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42998', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003652', 'children': [], 'synonymLabels': ['Distal epiphysis of third metatarsal bone'], 'label': 'head of third metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma42999': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma42999', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma42999', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003653', 'children': [], 'synonymLabels': ['Distal epiphysis of fourth metatarsal bone'], 'label': 'head of fourth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43000', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43000', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003654', 'children': [], 'synonymLabels': ['Distal epiphysis of fifth metatarsal bone'], 'label': 'head of fifth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43007', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43007', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003650', 'children': [], 'synonymLabels': ['Diaphysis of first metatarsal bone'], 'label': 'shaft of first metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43008', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43008', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003651', 'children': [], 'synonymLabels': ['Diaphysis of second metatarsal bone'], 'label': 'shaft of second metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43009', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003652', 'children': [], 'synonymLabels': ['Diaphysis of third metatarsal bone'], 'label': 'shaft of third metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43010', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43010', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003653', 'children': [], 'synonymLabels': ['Diaphysis of fourth metatarsal bone'], 'label': 'shaft of fourth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43011', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43011', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003654', 'children': [], 'synonymLabels': ['Diaphysis of fifth metatarsal bone'], 'label': 'shaft of fifth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4314', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4314', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right eighth posterior intercostal artery'], 'label': 'right posterior intercostal artery 8'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4337', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4337', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right ninth posterior intercostal artery'], 'label': 'right posterior intercostal artery 9'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4360': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4360', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4360', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right tenth posterior intercostal artery'], 'label': 'right posterior intercostal artery 10'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43703': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43703', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43703', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Trochanteric fossa of femur'], 'label': 'trochanteric fossa of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43706': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43706', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43706', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Intertrochanteric crest of femur'], 'label': 'intertrochanteric crest of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43709': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43709', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43709', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Quadrate tubercle of femur'], 'label': 'quadrate tubercle of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43715', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43715', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Linea aspera of diaphysis of femur'], 'label': 'linea aspera of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43718': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43718', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43718', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Lateral lip of linea aspera of femur'], 'label': 'lateral lip of linea aspera of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43719': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43719', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43719', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Medial lip of linea aspera of femur'], 'label': 'medial lip of linea aspera of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43748': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43748', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43748', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Intercondylar fossa of femur'], 'label': 'intercondylar fossa of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43761', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': ['Intercondylar eminence of tibia'], 'label': 'intercondylar eminence of tibia'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4383', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4383', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right eleventh posterior intercostal artery'], 'label': 'right posterior intercostal artery 11'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43888': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43888', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43888', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': ['Inferior lateral genicular artery'], 'label': 'lateral inferior genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43889': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43889', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43889', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': ['Inferior medial genicular artery'], 'label': 'medial inferior genicular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43902': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43902', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43902', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'children': [], 'synonymLabels': ['Anterior tibial recurrent artery'], 'label': 'anterior tibial recurrent artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43903': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43903', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43903', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'children': [], 'synonymLabels': ['Posterior tibial recurrent artery'], 'label': 'posterior tibial recurrent artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43904': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43904', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43904', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-supramalleolar-artery'], 'synonymLabels': ['Anterior lateral malleolar artery'], 'label': 'anterior lateral malleolar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43905': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43905', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43905', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'children': [], 'synonymLabels': ['Anterior medial malleolar artery'], 'label': 'anterior medial malleolar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43918': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43918', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43918', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001538', 'children': [], 'synonymLabels': ['Circumflex fibular artery'], 'label': 'circumflex fibular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43926': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43926', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43926', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001538', 'children': ['http://purl.org/sig/ont/fma/fma43942', 'https://purl.org/ccf/ASCTB-TEMP_superficial-branch-of-lateral-plantar-artery'], 'synonymLabels': ['Lateral plantar artery'], 'label': 'lateral plantar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43933': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43933', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43933', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001541', 'children': [], 'synonymLabels': ['Superficial medial plantar artery'], 'label': 'superficial branch of medial plantar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43934': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43934', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43934', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001541', 'children': [], 'synonymLabels': ['Deep medial plantar artery'], 'label': 'deep branch of medial plantar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43942', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43942', 'parent': 'http://purl.org/sig/ont/fma/fma43926', 'children': ['http://purl.org/sig/ont/fma/fma43959', 'https://purl.org/ccf/ASCTB-TEMP_first-posterior-perforating-branch-of-plantar-arch', 'http://purl.org/sig/ont/fma/fma43962', 'http://purl.org/sig/ont/fma/fma43960', 'https://purl.org/ccf/ASCTB-TEMP_second-posterior-perforating-branch-of-plantar-arch', 'http://purl.org/sig/ont/fma/fma43961', 'https://purl.org/ccf/ASCTB-TEMP_third-posterior-perforating-branch-of-plantar-arch'], 'synonymLabels': ['Plantar arch'], 'label': 'plantar arch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43959': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43959', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43959', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': ['https://purl.org/ccf/ASCTB-TEMP_first-common-plantar-digital-artery', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-first-digit-of-foot'], 'synonymLabels': ['First plantar metatarsal artery'], 'label': 'first plantar metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43960': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43960', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43960', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': ['https://purl.org/ccf/ASCTB-TEMP_second-common-plantar-digital-artery'], 'synonymLabels': ['Second plantar metatarsal artery'], 'label': 'second plantar metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43961': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43961', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43961', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': ['https://purl.org/ccf/ASCTB-TEMP_third-common-plantar-digital-artery'], 'synonymLabels': ['Third plantar metatarsal artery'], 'label': 'third plantar metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma43962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma43962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma43962', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': ['https://purl.org/ccf/ASCTB-TEMP_fourth-common-plantar-digital-artery'], 'synonymLabels': ['Fourth plantar metatarsal artery'], 'label': 'fourth plantar metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44033', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44033', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001540', 'children': [], 'synonymLabels': ['Perforating branch of fibular artery'], 'label': 'perforating branch of fibular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44034', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44034', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001540', 'children': [], 'synonymLabels': ['Communicating branch of fibular artery'], 'label': 'communicating branch of fibular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4406': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4406', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4406', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left third posterior intercostal artery'], 'label': 'left posterior intercostal artery 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4429': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4429', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4429', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left fourth posterior intercostal artery'], 'label': 'left posterior intercostal artery 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44313': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44313', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44313', 'parent': 'http://purl.org/sig/ont/fma/fma276805', 'children': [], 'synonymLabels': ['Paramammary lymph node'], 'label': 'paramammary lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44319', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44319', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': ['Superficial circumflex iliac vein'], 'label': 'superficial iliac circumflex vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44489': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44489', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44489', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006144', 'children': ['http://purl.org/sig/ont/fma/fma44504'], 'synonymLabels': ['Plantar venous arch of foot'], 'label': 'plantar venous arch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44504': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44504', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44504', 'parent': 'http://purl.org/sig/ont/fma/fma44489', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006139'], 'synonymLabels': ['Plantar metatarsal vein'], 'label': 'plantar metatarsal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4452', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4452', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left fifth posterior intercostal artery'], 'label': 'left posterior intercostal artery 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44595': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44595', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44595', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001539', 'children': [], 'synonymLabels': ['Lateral tarsal artery'], 'label': 'lateral tarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44630': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44630', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44630', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001540', 'children': [], 'synonymLabels': ['Calcaneal branch of fibular artery'], 'label': 'calcaneal branch of fibular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001539', 'children': ['http://purl.org/sig/ont/fma/fma69601', 'http://purl.org/sig/ont/fma/fma69585', 'http://purl.org/sig/ont/fma/fma69586'], 'synonymLabels': ['First dorsal metatarsal artery'], 'label': 'first dorsal metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44648', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44648', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034927', 'children': ['http://purl.org/sig/ont/fma/fma69604', 'http://purl.org/sig/ont/fma/fma69587'], 'synonymLabels': ['Second dorsal metatarsal artery'], 'label': 'second dorsal metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44649': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44649', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44649', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034927', 'children': ['http://purl.org/sig/ont/fma/fma69607', 'http://purl.org/sig/ont/fma/fma69588'], 'synonymLabels': ['Third dorsal metatarsal artery'], 'label': 'third dorsal metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44650', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034927', 'children': ['http://purl.org/sig/ont/fma/fma69613', 'http://purl.org/sig/ont/fma/fma69610', 'http://purl.org/sig/ont/fma/fma69589'], 'synonymLabels': ['Fourth dorsal metatarsal artery'], 'label': 'fourth dorsal metatarsal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44679', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44679', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001322', 'children': [], 'synonymLabels': ['Articular branch of sciatic nerve'], 'label': 'articular branch of sciatic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44687': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44687', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44687', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Medial sural cutaneous nerve'], 'label': 'medial sural cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44688', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44688', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': ['http://purl.org/sig/ont/fma/fma44695', 'http://purl.org/sig/ont/fma/fma44694', 'http://purl.org/sig/ont/fma/fma44815'], 'synonymLabels': ['Sural nerve'], 'label': 'sural nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44690': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44690', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44690', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to soleus'], 'label': 'muscular branch of tibial nerve to soleus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44691': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44691', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44691', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to gastrocnemius'], 'label': 'muscular branch of tibial nerve to gastrocnemius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44692', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44692', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Interosseous nerve of leg'], 'label': 'interosseous nerve of leg'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44694': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44694', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44694', 'parent': 'http://purl.org/sig/ont/fma/fma44688', 'children': [], 'synonymLabels': ['Lateral dorsal cutaneous branch of sural nerve'], 'label': 'lateral dorsal cutaneous branch of sural nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44695': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44695', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44695', 'parent': 'http://purl.org/sig/ont/fma/fma44688', 'children': [], 'synonymLabels': ['Lateral calcaneal branch of sural nerve'], 'label': 'lateral calcaneal branch of sural nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44697': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44697', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44697', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': [], 'synonymLabels': ['Lateral sural cutaneous nerve'], 'label': 'lateral sural cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44699': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44699', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44699', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': ['http://purl.org/sig/ont/fma/fma44814', 'http://purl.org/sig/ont/fma/fma44813', 'http://purl.org/sig/ont/fma/fma82970', 'http://purl.org/sig/ont/fma/fma44810', 'http://purl.org/sig/ont/fma/fma44812', 'http://purl.org/sig/ont/fma/fma44811', 'http://purl.org/sig/ont/fma/fma44809', 'http://purl.org/sig/ont/fma/fma80082', 'http://purl.org/sig/ont/fma/fma80079'], 'synonymLabels': ['Superficial fibular nerve'], 'label': 'superficial fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44700': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44700', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44700', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to popliteus'], 'label': 'muscular branch of tibial nerve to popliteus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44701': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44701', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44701', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to plantaris'], 'label': 'muscular branch of tibial nerve to plantaris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44710': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44710', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44710', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Medial calcaneal branch of tibial nerve'], 'label': 'medial calcaneal branch of tibial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44716', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44716', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': ['http://purl.org/sig/ont/fma/fma44740', 'http://purl.org/sig/ont/fma/fma44738', 'http://purl.org/sig/ont/fma/fma45438', 'http://purl.org/sig/ont/fma/fma45441', 'http://purl.org/sig/ont/fma/fma45439', 'http://purl.org/sig/ont/fma/fma45440'], 'synonymLabels': ['Medial plantar nerve'], 'label': 'medial plantar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44722': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44722', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44722', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Vascular branch of tibial nerve'], 'label': 'vascular branch of tibial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44724': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44724', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44724', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': ['http://purl.org/sig/ont/fma/fma44764', 'http://purl.org/sig/ont/fma/fma79972', 'http://purl.org/sig/ont/fma/fma79971', 'http://purl.org/sig/ont/fma/fma44763'], 'synonymLabels': ['Lateral plantar nerve'], 'label': 'lateral plantar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44726': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44726', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44726', 'parent': 'http://purl.org/sig/ont/fma/fma44741', 'children': [], 'synonymLabels': ['Proper plantar digital nerve of fifth toe'], 'label': 'proper plantar digital nerve of fifth toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44728': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44728', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44728', 'parent': 'http://purl.org/sig/ont/fma/fma44763', 'children': [], 'synonymLabels': ['Fourth common plantar digital nerve'], 'label': 'fourth common plantar digital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44738': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44738', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44738', 'parent': 'http://purl.org/sig/ont/fma/fma44716', 'children': [], 'synonymLabels': ['Cutaneous branch of medial plantar nerve'], 'label': 'cutaneous branch of medial plantar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44740': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44740', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44740', 'parent': 'http://purl.org/sig/ont/fma/fma44716', 'children': ['http://purl.org/sig/ont/fma/fma80055', 'http://purl.org/sig/ont/fma/fma80052'], 'synonymLabels': ['Articular branch of medial plantar nerve'], 'label': 'articular branch of medial plantar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44741': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44741', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44741', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': ['http://purl.org/sig/ont/fma/fma44743', 'http://purl.org/sig/ont/fma/fma44726', 'http://purl.org/sig/ont/fma/fma44751', 'http://purl.org/sig/ont/fma/fma44745', 'http://purl.org/sig/ont/fma/fma44748'], 'synonymLabels': ['Proper plantar digital nerve'], 'label': 'proper plantar digital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44743': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44743', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44743', 'parent': 'http://purl.org/sig/ont/fma/fma44741', 'children': [], 'synonymLabels': ['Proper plantar digital nerve of big toe'], 'label': 'proper plantar digital nerve of big toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44745': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44745', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44745', 'parent': 'http://purl.org/sig/ont/fma/fma44741', 'children': [], 'synonymLabels': ['Proper plantar digital nerve of second toe'], 'label': 'proper plantar digital nerve of second toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44748': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44748', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44748', 'parent': 'http://purl.org/sig/ont/fma/fma44741', 'children': [], 'synonymLabels': ['Proper plantar digital nerve of third toe'], 'label': 'proper plantar digital nerve of third toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4475': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4475', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4475', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left sixth posterior intercostal artery'], 'label': 'left posterior intercostal artery 6'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44751', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44751', 'parent': 'http://purl.org/sig/ont/fma/fma44741', 'children': [], 'synonymLabels': ['Proper plantar digital nerve of fourth toe'], 'label': 'proper plantar digital nerve of fourth toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44754': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44754', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44754', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to second lumbrical of foot'], 'label': 'nerve to second lumbrical of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44763': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44763', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44763', 'parent': 'http://purl.org/sig/ont/fma/fma44724', 'children': ['http://purl.org/sig/ont/fma/fma44768', 'http://purl.org/sig/ont/fma/fma44728'], 'synonymLabels': ['Superficial branch of lateral plantar nerve'], 'label': 'superficial branch of lateral plantar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44764': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44764', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44764', 'parent': 'http://purl.org/sig/ont/fma/fma44724', 'children': ['http://purl.org/sig/ont/fma/fma80043', 'http://purl.org/sig/ont/fma/fma80032', 'http://purl.org/sig/ont/fma/fma80028', 'http://purl.org/sig/ont/fma/fma80015', 'http://purl.org/sig/ont/fma/fma80033', 'http://purl.org/sig/ont/fma/fma44754', 'http://purl.org/sig/ont/fma/fma80031', 'http://purl.org/sig/ont/fma/fma80034', 'http://purl.org/sig/ont/fma/fma80012'], 'synonymLabels': ['Deep branch of lateral plantar nerve'], 'label': 'deep branch of lateral plantar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44765': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44765', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44765', 'parent': 'http://purl.org/sig/ont/fma/fma44768', 'children': [], 'synonymLabels': ['Nerve to fourth dorsal interosseous of foot'], 'label': 'nerve to fourth dorsal interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44768': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44768', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44768', 'parent': 'http://purl.org/sig/ont/fma/fma44763', 'children': ['http://purl.org/sig/ont/fma/fma79913', 'http://purl.org/sig/ont/fma/fma44765', 'http://purl.org/sig/ont/fma/fma79892'], 'synonymLabels': ['Fifth common plantar digital nerve'], 'label': 'fifth common plantar digital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44771': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44771', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44771', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': ['http://purl.org/sig/ont/fma/fma44778', 'http://purl.org/sig/ont/fma/fma44782', 'http://purl.org/sig/ont/fma/fma44776', 'http://purl.org/sig/ont/fma/fma44777'], 'synonymLabels': ['Deep fibular nerve'], 'label': 'deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44772': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44772', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44772', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': [], 'synonymLabels': ['Articular branch of common fibular nerve'], 'label': 'articular branch of common fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44776': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44776', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44776', 'parent': 'http://purl.org/sig/ont/fma/fma44771', 'children': [], 'synonymLabels': ['Lateral terminal branch of deep fibular nerve'], 'label': 'lateral terminal branch of deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44777': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44777', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44777', 'parent': 'http://purl.org/sig/ont/fma/fma44771', 'children': [], 'synonymLabels': ['Medial terminal branch of deep fibular nerve'], 'label': 'medial terminal branch of deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44778': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44778', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44778', 'parent': 'http://purl.org/sig/ont/fma/fma44771', 'children': ['http://purl.org/sig/ont/fma/fma44779', 'http://purl.org/sig/ont/fma/fma44780', 'http://purl.org/sig/ont/fma/fma80076'], 'synonymLabels': ['Branch of lateral terminal branch of deep fibular nerve'], 'label': 'branch of lateral terminal branch of deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44779': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44779', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44779', 'parent': 'http://purl.org/sig/ont/fma/fma44778', 'children': [], 'synonymLabels': ['Nerve to extensor digitorum brevis'], 'label': 'extensor digitorum brevis branch of lateral terminal branch of deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44780': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44780', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44780', 'parent': 'http://purl.org/sig/ont/fma/fma44778', 'children': [], 'synonymLabels': ['Interosseous branch of lateral terminal branch of deep fibular nerve'], 'label': 'interosseous branch of lateral terminal branch of deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44782', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44782', 'parent': 'http://purl.org/sig/ont/fma/fma44771', 'children': ['http://purl.org/sig/ont/fma/fma80068', 'http://purl.org/sig/ont/fma/fma80065', 'http://purl.org/sig/ont/fma/fma80071', 'http://purl.org/sig/ont/fma/fma80062'], 'synonymLabels': ['Branch of medial terminal branch of deep fibular nerve'], 'label': 'branch of medial terminal branch of deep fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44783': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44783', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44783', 'parent': 'http://purl.org/sig/ont/fma/fma44793', 'children': [], 'synonymLabels': ['Dorsal digital nerve of big toe'], 'label': 'dorsal digital nerve of big toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44788': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44788', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44788', 'parent': 'http://purl.org/sig/ont/fma/fma44793', 'children': [], 'synonymLabels': ['Dorsal digital nerve of second toe'], 'label': 'dorsal digital nerve of second toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44793': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44793', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44793', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': ['http://purl.org/sig/ont/fma/fma44783', 'http://purl.org/sig/ont/fma/fma44799', 'http://purl.org/sig/ont/fma/fma44804', 'http://purl.org/sig/ont/fma/fma44788', 'http://purl.org/sig/ont/fma/fma44794', 'http://purl.org/sig/ont/fma/fma44816'], 'synonymLabels': ['Dorsal digital nerve of foot'], 'label': 'dorsal digital nerve of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44794': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44794', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44794', 'parent': 'http://purl.org/sig/ont/fma/fma44793', 'children': [], 'synonymLabels': ['Dorsal digital nerve of third toe'], 'label': 'dorsal digital nerve of third toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44799': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44799', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44799', 'parent': 'http://purl.org/sig/ont/fma/fma44793', 'children': [], 'synonymLabels': ['Dorsal digital nerve of fourth toe'], 'label': 'dorsal digital nerve of fourth toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44804', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44804', 'parent': 'http://purl.org/sig/ont/fma/fma44793', 'children': [], 'synonymLabels': ['Dorsal digital nerve of little toe'], 'label': 'dorsal digital nerve of little toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44809': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44809', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44809', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Medial dorsal cutaneous nerve'], 'label': 'medial dorsal cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44810': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44810', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44810', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Intermediate dorsal cutaneous nerve'], 'label': 'intermediate dorsal cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44811': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44811', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44811', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Medial branch of superficial fibular nerve'], 'label': 'medial branch of superficial fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44812': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44812', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44812', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Lateral branch of superficial fibular nerve'], 'label': 'lateral branch of superficial fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44813': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44813', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44813', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Branch of medial branch of superficial fibular nerve'], 'label': 'branch of medial branch of superficial fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44814': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44814', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44814', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Branch of lateral branch of superficial fibular nerve'], 'label': 'branch of lateral branch of superficial fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44815': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44815', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44815', 'parent': 'http://purl.org/sig/ont/fma/fma44688', 'children': [], 'synonymLabels': ['Lateral dorsal digital nerve of little toe'], 'label': 'lateral dorsal digital nerve of little toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44816': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44816', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44816', 'parent': 'http://purl.org/sig/ont/fma/fma44793', 'children': [], 'synonymLabels': ['Medial dorsal digital nerve of little toe'], 'label': 'medial dorsal digital nerve of little toe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44822': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44822', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44822', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': ['http://purl.org/sig/ont/fma/fma44829', 'http://purl.org/sig/ont/fma/fma44830', 'http://purl.org/sig/ont/fma/fma44835'], 'synonymLabels': ['Anterior interosseous nerve'], 'label': 'anterior interosseous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44823': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44823', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44823', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Nerve to pronator teres'], 'label': 'branch of median nerve to pronator teres'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44824': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44824', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44824', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Nerve to flexor carpi radialis'], 'label': 'branch of median nerve to flexor carpi radialis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44825': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44825', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44825', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Nerve to palmaris longus'], 'label': 'branch of median nerve to palmaris longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44826': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44826', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44826', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Nerve to flexor digitorum superficialis'], 'label': 'branch of median nerve to flexor digitorum superficialis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44829': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44829', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44829', 'parent': 'http://purl.org/sig/ont/fma/fma44822', 'children': ['http://purl.org/sig/ont/fma/fma44834', 'http://purl.org/sig/ont/fma/fma44832', 'http://purl.org/sig/ont/fma/fma44833'], 'synonymLabels': ['Articular branch of anterior interosseous nerve'], 'label': 'articular branch of anterior interosseous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44830', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44830', 'parent': 'http://purl.org/sig/ont/fma/fma44822', 'children': [], 'synonymLabels': ['Nerve to flexor pollicis longus'], 'label': 'branch of anterior interosseous nerve to flexor pollicis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44832': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44832', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44832', 'parent': 'http://purl.org/sig/ont/fma/fma44829', 'children': [], 'synonymLabels': ['Nerve to distal radio-ulnar joint'], 'label': 'nerve to distal radio-ulnar joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44833': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44833', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44833', 'parent': 'http://purl.org/sig/ont/fma/fma44829', 'children': [], 'synonymLabels': ['Nerve to wrist joint'], 'label': 'nerve to radio-carpal joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44834', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44834', 'parent': 'http://purl.org/sig/ont/fma/fma44829', 'children': [], 'synonymLabels': ['Nerve to intercarpal joint'], 'label': 'nerve to carpal joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44835': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44835', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44835', 'parent': 'http://purl.org/sig/ont/fma/fma44822', 'children': [], 'synonymLabels': ['Nerve to pronator quadratus'], 'label': 'branch of anterior interosseous nerve to pronator quadratus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44838': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44838', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44838', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': ['http://purl.org/sig/ont/fma/fma44857'], 'synonymLabels': ['Lateral branch of palmar branch of median nerve'], 'label': 'lateral branch of palmar branch of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44839', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44839', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': [], 'synonymLabels': ['Medial branch of palmar branch of median nerve'], 'label': 'medial branch of palmar branch of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44841': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44841', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44841', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': [], 'synonymLabels': ['First common palmar digital branch of median nerve'], 'label': 'first common palmar digital branch of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44842': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44842', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44842', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': [], 'synonymLabels': ['Second common palmar digital branch of median nerve'], 'label': 'second common palmar digital branch of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44843': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44843', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44843', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': [], 'synonymLabels': ['Third common palmar digital branch of median nerve'], 'label': 'third common palmar digital branch of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44844': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44844', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44844', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': [], 'synonymLabels': ['Fourth common palmar digital branch of median nerve'], 'label': 'fourth common palmar digital branch of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44854': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44854', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44854', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': ['http://purl.org/sig/ont/fma/fma44858'], 'synonymLabels': ['Proper palmar digital branch of median nerve to thumb'], 'label': 'proper palmar digital branch of median nerve to thumb'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44857': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44857', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44857', 'parent': 'http://purl.org/sig/ont/fma/fma44838', 'children': [], 'synonymLabels': ['Lateral proper palmar digital branch of median nerve to thumb'], 'label': 'lateral proper palmar digital branch of median nerve to thumb'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44858': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44858', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44858', 'parent': 'http://purl.org/sig/ont/fma/fma44854', 'children': [], 'synonymLabels': ['Medial proper palmar digital branch of median nerve to thumb'], 'label': 'medial proper palmar digital branch of median nerve to thumb'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44859': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44859', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44859', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': ['http://purl.org/sig/ont/fma/fma44862', 'http://purl.org/sig/ont/fma/fma44863'], 'synonymLabels': ['Proper palmar digital branch of median nerve to index finger'], 'label': 'proper palmar digital branch of median nerve to index finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44862': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44862', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44862', 'parent': 'http://purl.org/sig/ont/fma/fma44859', 'children': [], 'synonymLabels': ['Lateral proper palmar digital branch of median nerve to index finger'], 'label': 'lateral proper palmar digital branch of median nerve to index finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44863': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44863', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44863', 'parent': 'http://purl.org/sig/ont/fma/fma44859', 'children': [], 'synonymLabels': ['Medial proper palmar digital branch of median nerve to index finger'], 'label': 'medial proper palmar digital branch of median nerve to index finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44864': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44864', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44864', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': ['http://purl.org/sig/ont/fma/fma44867', 'http://purl.org/sig/ont/fma/fma44868'], 'synonymLabels': ['Proper palmar digital branch of median nerve to middle finger'], 'label': 'proper palmar digital branch of median nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44867': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44867', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44867', 'parent': 'http://purl.org/sig/ont/fma/fma44864', 'children': [], 'synonymLabels': ['Lateral proper palmar digital branch of median nerve to middle finger'], 'label': 'lateral proper palmar digital branch of median nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44868': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44868', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44868', 'parent': 'http://purl.org/sig/ont/fma/fma44864', 'children': [], 'synonymLabels': ['Medial proper palmar digital branch of median nerve to middle finger'], 'label': 'medial proper palmar digital branch of median nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44869': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44869', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44869', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016430', 'children': [], 'synonymLabels': ['Lateral proper palmar digital branch of median nerve to ring finger'], 'label': 'proper palmar digital branch of median nerve to ring finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44873': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44873', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44873', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': [], 'synonymLabels': ['Branch of ulnar nerve to elbow joint'], 'label': 'articular branch of ulnar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44875': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44875', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44875', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': ['http://purl.org/sig/ont/fma/fma44929', 'http://purl.org/sig/ont/fma/fma44938', 'http://purl.org/sig/ont/fma/fma44944'], 'synonymLabels': ['Branch of dorsal branch of ulnar nerve'], 'label': 'dorsal branch of ulnar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44876': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44876', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44876', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': ['http://purl.org/sig/ont/fma/fma44906', 'http://purl.org/sig/ont/fma/fma44889', 'http://purl.org/sig/ont/fma/fma44903', 'http://purl.org/sig/ont/fma/fma44897', 'http://purl.org/sig/ont/fma/fma44900'], 'synonymLabels': ['Superficial branch of ulnar nerve'], 'label': 'superficial branch of ulnar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44877': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44877', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44877', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': ['http://purl.org/sig/ont/fma/fma80261', 'http://purl.org/sig/ont/fma/fma80264', 'http://purl.org/sig/ont/fma/fma80270', 'http://purl.org/sig/ont/fma/fma80231', 'http://purl.org/sig/ont/fma/fma80243', 'http://purl.org/sig/ont/fma/fma80258', 'http://purl.org/sig/ont/fma/fma80240', 'http://purl.org/sig/ont/fma/fma80218', 'http://purl.org/sig/ont/fma/fma80252', 'http://purl.org/sig/ont/fma/fma80255', 'http://purl.org/sig/ont/fma/fma80276', 'http://purl.org/sig/ont/fma/fma80234', 'http://purl.org/sig/ont/fma/fma80246', 'http://purl.org/sig/ont/fma/fma80237', 'http://purl.org/sig/ont/fma/fma80215', 'http://purl.org/sig/ont/fma/fma80249'], 'synonymLabels': ['Deep branch of ulnar nerve'], 'label': 'deep branch of ulnar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44878': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44878', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44878', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': [], 'synonymLabels': ['Palmar branch of ulnar nerve'], 'label': 'palmar branch of ulnar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44889': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44889', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44889', 'parent': 'http://purl.org/sig/ont/fma/fma44876', 'children': [], 'synonymLabels': ['Common palmar digital branch of ulnar nerve to little finger'], 'label': 'fifth common palmar digital branch of ulnar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44897': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44897', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44897', 'parent': 'http://purl.org/sig/ont/fma/fma44876', 'children': [], 'synonymLabels': ['Medial proper palmar digital branch of ulnar nerve to little finger'], 'label': 'medial proper palmar digital branch of ulnar nerve to little finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44900': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44900', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44900', 'parent': 'http://purl.org/sig/ont/fma/fma44876', 'children': [], 'synonymLabels': ['Medial proper palmar digital branch of ulnar nerve to ring finger'], 'label': 'medial proper palmar digital branch of ulnar nerve to ring finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44903': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44903', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44903', 'parent': 'http://purl.org/sig/ont/fma/fma44876', 'children': [], 'synonymLabels': ['Lateral proper palmar digital branch of ulnar nerve to little finger'], 'label': 'lateral proper palmar digital branch of ulnar nerve to little finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44906': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44906', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44906', 'parent': 'http://purl.org/sig/ont/fma/fma44876', 'children': [], 'synonymLabels': ['Nerve to palmaris brevis'], 'label': 'branch of superficial branch of ulnar nervenerve to palmaris brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44915': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44915', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44915', 'parent': 'http://purl.org/sig/ont/fma/fma44929', 'children': [], 'synonymLabels': ['Medial dorsal digital branch of ulnar nerve to little finger'], 'label': 'medial dorsal digital branch of ulnar nerve to little finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44921': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44921', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44921', 'parent': 'http://purl.org/sig/ont/fma/fma44929', 'children': [], 'synonymLabels': ['Lateral dorsal digital branch of ulnar nerve to little finger'], 'label': 'lateral dorsal digital branch of ulnar nerve to little finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44929': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44929', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44929', 'parent': 'http://purl.org/sig/ont/fma/fma44875', 'children': ['http://purl.org/sig/ont/fma/fma44921', 'http://purl.org/sig/ont/fma/fma44915'], 'synonymLabels': ['Second dorsal digital branch of ulnar nerve'], 'label': 'dorsal digital branch of ulnar nerve to little finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44935': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44935', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44935', 'parent': 'http://purl.org/sig/ont/fma/fma44938', 'children': [], 'synonymLabels': ['Lateral dorsal digital branch of ulnar nerve to ring finger'], 'label': 'lateral dorsal digital branch of ulnar nerve to ring finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44938': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44938', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44938', 'parent': 'http://purl.org/sig/ont/fma/fma44875', 'children': ['http://purl.org/sig/ont/fma/fma44935', 'http://purl.org/sig/ont/fma/fma44941'], 'synonymLabels': ['Third dorsal digital branch of ulnar nerve'], 'label': 'dorsal digital branch of ulnar nerve to ring finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44941': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44941', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44941', 'parent': 'http://purl.org/sig/ont/fma/fma44938', 'children': [], 'synonymLabels': ['Medial dorsal digital branch of ulnar nerve to ring finger'], 'label': 'medial dorsal digital branch of ulnar nerve to ring finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44944': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44944', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44944', 'parent': 'http://purl.org/sig/ont/fma/fma44875', 'children': [], 'synonymLabels': ['Medial dorsal digital branch of ulnar nerve to middle finger'], 'label': 'medial dorsal digital branch of ulnar nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44948': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44948', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44948', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Posterior cutaneous nerve of arm'], 'label': 'posterior brachial cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44949': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44949', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44949', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Inferior lateral cutaneous nerve of arm'], 'label': 'inferior lateral brachial cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44956': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44956', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44956', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': ['http://purl.org/sig/ont/fma/fma44980', 'http://purl.org/sig/ont/fma/fma44989', 'http://purl.org/sig/ont/fma/fma44968', 'http://purl.org/sig/ont/fma/fma44998'], 'synonymLabels': ['Branch of superficial branch of radial nerve'], 'label': 'superficial branch of radial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Articular branch of radial nerve'], 'label': 'articular branch of radial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44968': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44968', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44968', 'parent': 'http://purl.org/sig/ont/fma/fma44956', 'children': ['http://purl.org/sig/ont/fma/fma44977', 'http://purl.org/sig/ont/fma/fma44971'], 'synonymLabels': ['Dorsal digital branch of radial nerve to thumb'], 'label': 'dorsal digital branch of radial nerve to thumb'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44971': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44971', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44971', 'parent': 'http://purl.org/sig/ont/fma/fma44968', 'children': [], 'synonymLabels': ['Second dorsal digital branch of radial nerve'], 'label': 'medial dorsal digital branch of radial nerve to thumb'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44977': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44977', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44977', 'parent': 'http://purl.org/sig/ont/fma/fma44968', 'children': [], 'synonymLabels': ['First dorsal digital branch of radial nerve'], 'label': 'lateral dorsal digital branch of radial nerve to thumb'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4498': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4498', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4498', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left seventh posterior intercostal artery'], 'label': 'left posterior intercostal artery 7'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44980': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44980', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44980', 'parent': 'http://purl.org/sig/ont/fma/fma44956', 'children': ['http://purl.org/sig/ont/fma/fma44983'], 'synonymLabels': ['Dorsal digital branch of radial nerve to index finger'], 'label': 'dorsal digital branch of radial nerve to index finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44983': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44983', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44983', 'parent': 'http://purl.org/sig/ont/fma/fma44980', 'children': [], 'synonymLabels': ['Dorsal digital branch of radial nerve to medial side of index finger'], 'label': 'medial dorsal digital branch of radial nerve to index finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44989': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44989', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44989', 'parent': 'http://purl.org/sig/ont/fma/fma44956', 'children': ['http://purl.org/sig/ont/fma/fma44993', 'http://purl.org/sig/ont/fma/fma44992'], 'synonymLabels': ['Dorsal digital branch of radial nerve to middle finger'], 'label': 'dorsal digital branch of radial nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44992': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44992', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44992', 'parent': 'http://purl.org/sig/ont/fma/fma44989', 'children': [], 'synonymLabels': ['Medial dorsal digital branch of radial nerve to middle finger'], 'label': 'medial dorsal digital branch of radial nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44993': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44993', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44993', 'parent': 'http://purl.org/sig/ont/fma/fma44989', 'children': [], 'synonymLabels': ['Dorsal digital branch of radial nerve to lateral side of middle finger'], 'label': 'lateral dorsal digital branch of radial nerve to middle finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma44998': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma44998', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma44998', 'parent': 'http://purl.org/sig/ont/fma/fma44956', 'children': [], 'synonymLabels': ['Lateral dorsal digital branch of radial nerve to ring finger'], 'label': 'lateral dorsal digital branch of radial nerve to ring finger'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4521': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4521', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4521', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left eighth posterior intercostal artery'], 'label': 'left posterior intercostal artery 8'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45306': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45306', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45306', 'parent': 'http://purl.org/sig/ont/fma/fma16487', 'children': ['http://purl.org/sig/ont/fma/fma45317', 'http://purl.org/sig/ont/fma/fma81163', 'http://purl.org/sig/ont/fma/fma81166', 'http://purl.org/sig/ont/fma/fma45312', 'http://purl.org/sig/ont/fma/fma45316', 'http://purl.org/sig/ont/fma/fma80157'], 'synonymLabels': ['Anterior branch of obturator nerve'], 'label': 'anterior branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45307': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45307', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45307', 'parent': 'http://purl.org/sig/ont/fma/fma16487', 'children': ['http://purl.org/sig/ont/fma/fma45322', 'http://purl.org/sig/ont/fma/fma45318', 'http://purl.org/sig/ont/fma/fma80160'], 'synonymLabels': ['Posterior branch of obturator nerve'], 'label': 'posterior branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45312', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45312', 'parent': 'http://purl.org/sig/ont/fma/fma45306', 'children': [], 'synonymLabels': ['Cutaneous branch of anterior branch of obturator nerve'], 'label': 'cutaneous branch of anterior branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45316', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45316', 'parent': 'http://purl.org/sig/ont/fma/fma45306', 'children': [], 'synonymLabels': ['Nerve to adductor longus'], 'label': 'nerve to adductor longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45317', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45317', 'parent': 'http://purl.org/sig/ont/fma/fma45306', 'children': [], 'synonymLabels': ['Adductor brevis branch of anterior branch of obturator nerve'], 'label': 'adductor brevis branch of anterior branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45318': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45318', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45318', 'parent': 'http://purl.org/sig/ont/fma/fma45307', 'children': [], 'synonymLabels': ['Articular branch of posterior branch of obturator nerve'], 'label': 'articular branch of posterior branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45322', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45322', 'parent': 'http://purl.org/sig/ont/fma/fma45307', 'children': [], 'synonymLabels': ['Adductor magnus branch of posterior branch of obturator nerve'], 'label': 'adductor magnus branch of posterior branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45331', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45331', 'parent': 'http://purl.org/sig/ont/fma/fma16487', 'children': [], 'synonymLabels': ['Cutaneous branch of obturator nerve'], 'label': 'cutaneous branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45337', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45337', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': ['http://purl.org/sig/ont/fma/fma66061', 'http://purl.org/sig/ont/fma/fma45353', 'http://purl.org/sig/ont/fma/fma21847'], 'synonymLabels': ['Posterior femoral cutaneous nerve'], 'label': 'posterior femoral cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45353': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45353', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45353', 'parent': 'http://purl.org/sig/ont/fma/fma45337', 'children': [], 'synonymLabels': ['Gluteal branch of posterior femoral cutaneous nerve'], 'label': 'gluteal branch of posterior femoral cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45403': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45403', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45403', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Biceps femoris branch of tibial nerve'], 'label': 'biceps femoris branch of tibial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45404': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45404', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45404', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': [], 'synonymLabels': ['Biceps femoris branch of common fibular nerve'], 'label': 'biceps femoris branch of common fibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45438': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45438', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45438', 'parent': 'http://purl.org/sig/ont/fma/fma44716', 'children': [], 'synonymLabels': ['Nerve to abductor hallucis'], 'label': 'muscular branch of medial plantar nerve to abductor hallucis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45439', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45439', 'parent': 'http://purl.org/sig/ont/fma/fma44716', 'children': [], 'synonymLabels': ['Nerve to flexor digitorum brevis'], 'label': 'muscular branch of medial plantar nerve to flexor digitorum brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4544': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4544', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4544', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left ninth posterior intercostal artery'], 'label': 'left posterior intercostal artery 9'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45440': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45440', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45440', 'parent': 'http://purl.org/sig/ont/fma/fma44716', 'children': [], 'synonymLabels': ['Nerve to flexor hallucis brevis'], 'label': 'muscular branch of medial plantar nerve to flexor hallucis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45441': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45441', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45441', 'parent': 'http://purl.org/sig/ont/fma/fma44716', 'children': [], 'synonymLabels': ['Nerve to first lumbrical of foot'], 'label': 'muscular branch of medial plantar nerve to first lumbrical of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4567': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4567', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4567', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left tenth posterior intercostal artery'], 'label': 'left posterior intercostal artery 10'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45776': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45776', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45776', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001128', 'children': [], 'synonymLabels': ['Clavicular head of sternocleidomastoid'], 'label': 'clavicular head of sternocleidomastoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45887': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45887', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45887', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001374', 'children': [], 'synonymLabels': ['Long head of biceps femoris'], 'label': 'long head of biceps femoris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma45890': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma45890', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma45890', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001374', 'children': [], 'synonymLabels': ['Short head of biceps femoris'], 'label': 'short head of biceps femoris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4590': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4590', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4590', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left eleventh posterior intercostal artery'], 'label': 'left posterior intercostal artery 11'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46014', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46014', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014379', 'children': [], 'synonymLabels': ['Oblique head of adductor hallucis'], 'label': 'oblique head of adductor hallucis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46015', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46015', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014379', 'children': [], 'synonymLabels': ['Transverse head of adductor hallucis'], 'label': 'transverse head of adductor hallucis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46104': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46104', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46104', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011012', 'children': [], 'synonymLabels': ['Superficial head of flexor pollicis brevis'], 'label': 'superficial head of flexor pollicis brevis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46107', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46107', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011012', 'children': [], 'synonymLabels': ['Deep head of flexor pollicis brevis'], 'label': 'deep head of flexor pollicis brevis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46119': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46119', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46119', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002962', 'children': [], 'synonymLabels': ['Oblique head of adductor pollicis'], 'label': 'oblique head of adductor pollicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46120': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46120', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46120', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002962', 'children': [], 'synonymLabels': ['Transverse head of adductor pollicis'], 'label': 'transverse head of adductor pollicis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46291', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008571', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010943', 'http://purl.obolibrary.org/obo/UBERON_0010944'], 'synonymLabels': ['Digastric'], 'label': 'digastric muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4634': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4634', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4634', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Right subcostal artery'], 'label': 'right subcostal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46340', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46340', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001108', 'children': [], 'synonymLabels': ['Superior belly of omohyoid'], 'label': 'superior belly of omohyoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46341': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46341', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46341', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001108', 'children': [], 'synonymLabels': ['Inferior belly of omohyoid'], 'label': 'inferior belly of omohyoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4654', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4654', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Left subcostal artery'], 'label': 'left subcostal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46582': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46582', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46582', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': [], 'synonymLabels': ['Transverse arytenoid'], 'label': 'transverse arytenoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46583': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46583', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46583', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': ['https://purl.org/ccf/ASCTB-TEMP_aryepiglottic-part-of-oblique-arytenoid-muscle'], 'synonymLabels': ['Oblique arytenoid'], 'label': 'oblique arytenoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46588': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46588', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46588', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001568', 'children': ['https://purl.org/ccf/ASCTB-TEMP_thyroepiglottic-part-of-thyroarytenoid-muscle'], 'synonymLabels': ['Thyro-arytenoid'], 'label': 'thyroarytenoid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46609': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46609', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46609', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001566', 'children': [], 'synonymLabels': ['Straight part of cricothyroid'], 'label': 'straight part of cricothyroid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46610', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46610', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001566', 'children': [], 'synonymLabels': ['Oblique part of cricothyroid'], 'label': 'oblique part of cricothyroid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46621': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46621', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46621', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle', 'children': ['http://purl.org/sig/ont/fma/fma46641', 'http://purl.org/sig/ont/fma/fma46647', 'http://purl.org/sig/ont/fma/fma46644', 'https://purl.org/ccf/ASCTB-TEMP_pteryopharyngeal-part-of-superior-pharyngeal-constrictor-muscle'], 'synonymLabels': ['Superior pharyngeal constrictor'], 'label': 'superior pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46622': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46622', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46622', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle', 'children': ['http://purl.org/sig/ont/fma/fma46654', 'http://purl.org/sig/ont/fma/fma46651'], 'synonymLabels': ['Middle pharyngeal constrictor'], 'label': 'middle pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46623', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46623', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010928', 'https://purl.org/ccf/ASCTB-TEMP_thyropharyngeal-part-of-inferior-pharyngeal-constrictor-muscle'], 'synonymLabels': ['Inferior pharyngeal constrictor'], 'label': 'inferior pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46641', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46641', 'parent': 'http://purl.org/sig/ont/fma/fma46621', 'children': [], 'synonymLabels': ['Buccopharyngeal part of superior pharyngeal constrictor'], 'label': 'buccopharyngeal part of superior pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46644', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46644', 'parent': 'http://purl.org/sig/ont/fma/fma46621', 'children': [], 'synonymLabels': ['Mylopharyngeal part of superior pharyngeal constrictor'], 'label': 'mylopharyngeal part of superior pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46647', 'parent': 'http://purl.org/sig/ont/fma/fma46621', 'children': [], 'synonymLabels': ['Glossopharyngeal part of superior pharyngeal constrictor'], 'label': 'glossopharyngeal part of superior pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46651', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46651', 'parent': 'http://purl.org/sig/ont/fma/fma46622', 'children': [], 'synonymLabels': ['Chondropharyngeal part of middle pharyngeal constrictor'], 'label': 'chondropharyngeal part of middle pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46654', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46654', 'parent': 'http://purl.org/sig/ont/fma/fma46622', 'children': [], 'synonymLabels': ['Ceratopharyngeal part of middle pharyngeal constrictor'], 'label': 'ceratopharyngeal part of middle pharyngeal constrictor muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46683': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46683', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46683', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010234', 'children': [], 'synonymLabels': ['Anterior fascicle of palatopharyngeus'], 'label': 'anterior fascicle of palatopharyngeus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46684': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46684', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46684', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010234', 'children': [], 'synonymLabels': ['Posterior fascicle of palatopharyngeus'], 'label': 'posterior fascicle of palatopharyngeus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46692', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46692', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001575', 'children': [], 'synonymLabels': ['Styloglossus'], 'label': 'styloglossus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46727': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46727', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46727', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003682', 'children': [], 'synonymLabels': ['Levator veli palatini'], 'label': 'levator veli palatini muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46753': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46753', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46753', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', 'children': [], 'synonymLabels': ['Temporoparietalis'], 'label': 'temporoparietalis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46769': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46769', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46769', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Procerus'], 'label': 'procerus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46772': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46772', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46772', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010953', 'children': [], 'synonymLabels': ['Transverse part of nasalis'], 'label': 'transverse part of nasalis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46773', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010953', 'children': [], 'synonymLabels': ['Alar part of nasalis'], 'label': 'alar part of nasalis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46777': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46777', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46777', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Depressor septi nasi'], 'label': 'depressor septi nasi muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46781': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46781', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46781', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001578', 'children': [], 'synonymLabels': ['Orbital part of orbicularis oculi'], 'label': 'orbital part of orbicularis oculi muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46784': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46784', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46784', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001578', 'children': [], 'synonymLabels': ['Palpebral part of orbicularis oculi'], 'label': 'palpebral part of orbicularis oculi muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46794': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46794', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46794', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Corrugator supercilii'], 'label': 'corrugator supercilii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46798', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46798', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Depressor supercilii'], 'label': 'depressor supercilii muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46802': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46802', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46802', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Levator labii superioris alaeque nasi'], 'label': 'levator labii superioris alaeque nasi muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46805', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46805', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Levator labii superioris'], 'label': 'levator labii superioris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46816': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46816', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46816', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'children': [], 'synonymLabels': ['Depressor labii inferioris'], 'label': 'depressor labii inferioris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46855': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46855', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46855', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', 'children': [], 'synonymLabels': ['Auricularis superior'], 'label': 'auricularis superior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma46856': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma46856', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma46856', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', 'children': [], 'synonymLabels': ['Auricularis anterior'], 'label': 'auricularis anterior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4708', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4708', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': [], 'synonymLabels': ['Left marginal vein'], 'label': 'left marginal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4712': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4712', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4712', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002084', 'children': [], 'synonymLabels': ['Posterior vein of left ventricle'], 'label': 'posterior vein of the left ventricle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4715', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4715', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Oblique vein of left atrium'], 'label': 'oblique vein of the left atrium'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4733': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4733', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4733', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': ['Sixth anterior intercostal vein'], 'label': 'anterior intercostal vein 6'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4734': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4734', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4734', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': ['Fifth anterior intercostal vein'], 'label': 'anterior intercostal vein 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4735': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4735', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4735', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': ['Fourth anterior intercostal vein'], 'label': 'anterior intercostal vein 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4736': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4736', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4736', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006662', 'children': [], 'synonymLabels': ['Seventh anterior intercostal vein'], 'label': 'anterior intercostal vein 7'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4737': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4737', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4737', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006662', 'children': [], 'synonymLabels': ['Eighth anterior intercostal vein'], 'label': 'anterior intercostal vein 8'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4738': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4738', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4738', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006662', 'children': [], 'synonymLabels': ['Ninth anterior intercostal vein'], 'label': 'anterior intercostal vein 9'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4739': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4739', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4739', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': ['Third anterior intercostal vein'], 'label': 'anterior intercostal vein 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4740': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4740', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4740', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': ['Second anterior intercostal vein'], 'label': 'anterior intercostal vein 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4741': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4741', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4741', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001589', 'children': [], 'synonymLabels': ['First anterior intercostal vein'], 'label': 'anterior intercostal vein 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4744': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4744', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4744', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003711', 'children': [], 'synonymLabels': ['First posterior intercostal vein'], 'label': 'supreme intercostal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4746': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4746', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4746', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'children': ['http://purl.org/sig/ont/fma/fma50803'], 'synonymLabels': ['Deep cervical vein'], 'label': 'deep cervical vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4748': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4748', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4748', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Esophageal vein'], 'label': 'esophageal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4751', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4751', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001585', 'children': [], 'synonymLabels': ['Right brachiocephalic vein'], 'label': 'right brachiocephalic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4761', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001585', 'children': ['http://purl.obolibrary.org/obo/UBERON_0012195'], 'synonymLabels': ['Left brachiocephalic vein'], 'label': 'left brachiocephalic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4799': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4799', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4799', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012195', 'children': [], 'synonymLabels': ['Left second posterior intercostal vein'], 'label': 'left posterior intercostal vein 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4800': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4800', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4800', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012195', 'children': [], 'synonymLabels': ['Left third posterior intercostal vein'], 'label': 'left posterior intercostal vein 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4837': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4837', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4837', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': [], 'synonymLabels': ['Left bronchial vein'], 'label': 'left bronchial vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4859': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4859', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4859', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right eleventh posterior intercostal vein'], 'label': 'right posterior intercostal vein 11'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4860': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4860', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4860', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right tenth posterior intercostal vein'], 'label': 'right posterior intercostal vein 10'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4869': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4869', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4869', 'parent': 'http://purl.org/sig/ont/fma/fma76736', 'children': ['http://purl.org/sig/ont/fma/fma321542'], 'synonymLabels': ['Anterior internal vertebral venous plexus'], 'label': 'anterior internal vertebral venous plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4870': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4870', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4870', 'parent': 'http://purl.org/sig/ont/fma/fma76736', 'children': [], 'synonymLabels': ['Posterior internal vertebral venous plexus'], 'label': 'posterior internal vertebral venous plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4872': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4872', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4872', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right ninth posterior intercostal vein'], 'label': 'right posterior intercostal vein 9'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4873': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4873', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4873', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right eighth posterior intercostal vein'], 'label': 'right posterior intercostal vein 8'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4874': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4874', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4874', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right seventh posterior intercostal vein'], 'label': 'right posterior intercostal vein 7'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4875': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4875', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4875', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right sixth posterior intercostal vein'], 'label': 'right posterior intercostal vein 6'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4876': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4876', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4876', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right fifth posterior intercostal vein'], 'label': 'right posterior intercostal vein 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4878': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4878', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4878', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012196', 'children': [], 'synonymLabels': ['Right fourth posterior intercostal vein'], 'label': 'right posterior intercostal vein 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4879': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4879', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4879', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012196', 'children': [], 'synonymLabels': ['Right third posterior intercostal vein'], 'label': 'right posterior intercostal vein 3'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4880': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4880', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4880', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012196', 'children': [], 'synonymLabels': ['Right second posterior intercostal vein'], 'label': 'right posterior intercostal vein 2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma48962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma48962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma48962', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', 'children': [], 'synonymLabels': ['Left auricularis posterior'], 'label': 'auricularis posterior muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49041', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49041', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001601', 'children': [], 'synonymLabels': ['Levator palpebrae superioris'], 'label': 'levator palpebrae superioris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49157', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49157', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-eye-muscle', 'children': [], 'synonymLabels': ['Sphincter pupillae'], 'label': 'sphincter pupillae muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4942', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4942', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001594', 'children': [], 'synonymLabels': ['Right bronchial vein'], 'label': 'right bronchial vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49477', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': ['Sternocleidomastoid artery'], 'label': 'sternocleidomastoid artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49480': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49480', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49480', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007150', 'children': [], 'synonymLabels': ['Superior laryngeal artery'], 'label': 'superior laryngeal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49483', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007150', 'children': [], 'synonymLabels': ['Cricothyroid artery'], 'label': 'cricothyroid artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4949': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4949', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4949', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006663', 'children': [], 'synonymLabels': ['Left eleventh posterior intercostal vein'], 'label': 'left posterior intercostal vein 11'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49497': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49497', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49497', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': ['http://purl.org/sig/ont/fma/fma49506', 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk'], 'synonymLabels': ['Ascending pharyngeal artery'], 'label': 'ascending pharyngeal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49506': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49506', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49506', 'parent': 'http://purl.org/sig/ont/fma/fma49497', 'children': [], 'synonymLabels': ['Inferior tympanic artery'], 'label': 'inferior tympanic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49532': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49532', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49532', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001610', 'children': [], 'synonymLabels': ['Third part of lingual artery'], 'label': 'deep lingual artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49546': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49546', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49546', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001610', 'children': [], 'synonymLabels': ['Dorsal lingual artery'], 'label': 'dorsal lingual artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49555': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49555', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49555', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': [], 'synonymLabels': ['Ascending palatine artery'], 'label': 'ascending palatine artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49558': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49558', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49558', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['Tonsillar artery'], 'label': 'tonsillar branch of facial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49561': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49561', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49561', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['Submental artery'], 'label': 'submental artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49580': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49580', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49580', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['Lateral nasal artery'], 'label': 'lateral nasal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49599': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49599', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49599', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': ['Mastoid artery'], 'label': 'mastoid branch of occipital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49602': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49602', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49602', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': ['Auricular branch of occipital artery'], 'label': 'auricular branch of occipital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49608', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49608', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': ['Descending branch of occipital artery'], 'label': 'descending branch of occipital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49618', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49618', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': ['Meningeal branch of occipital artery'], 'label': 'meningeal branch of occipital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006663', 'children': [], 'synonymLabels': ['Left tenth posterior intercostal vein'], 'label': 'left posterior intercostal vein 10'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49621': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49621', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49621', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': ['Muscular branch of occipital artery'], 'label': 'muscular branch of occipital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49628', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'children': [], 'synonymLabels': ['Stylomastoid artery'], 'label': 'stylomastoid artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49631': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49631', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49631', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'children': [], 'synonymLabels': ['Posterior tympanic artery'], 'label': 'posterior tympanic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49641', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49641', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'children': [], 'synonymLabels': ['Auricular branch of posterior auricular artery'], 'label': 'auricular branch of posterior auricular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49644', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'children': [], 'synonymLabels': ['Occipital branch of posterior auricular artery'], 'label': 'occipital branch of posterior auricular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014694', 'children': [], 'synonymLabels': ['Parotid branch of posterior auricular artery'], 'label': 'parotid branch of posterior auricular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49660': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49660', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49660', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'children': [], 'synonymLabels': ['Anterior auricular branch of superficial temporal artery'], 'label': 'anterior auricular branch of superficial temporal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49669': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49669', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49669', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001614', 'children': [], 'synonymLabels': ['Frontal branch of superficial temporal artery'], 'label': 'frontal branch of superficial temporal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4969': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4969', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4969', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006663', 'children': [], 'synonymLabels': ['Left ninth posterior intercostal vein'], 'label': 'left posterior intercostal vein 9'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49692', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49692', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Anterior tympanic artery'], 'label': 'anterior tympanic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49745': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49745', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49745', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Anterior deep temporal artery'], 'label': 'anterior deep temporal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49746': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49746', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49746', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Posterior deep temporal artery'], 'label': 'posterior deep temporal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49751', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49751', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Pterygoid branch of maxillary artery'], 'label': 'pterygoid branches of maxillary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4976': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4976', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4976', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': [], 'synonymLabels': ['Left eighth posterior intercostal vein'], 'label': 'left posterior intercostal vein 8'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49771': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49771', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49771', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004646', 'children': [], 'synonymLabels': ['Anterior superior alveolar artery'], 'label': 'anterior superior alveolar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49791': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49791', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49791', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': ['http://purl.obolibrary.org/obo/UBERON_0006664', 'http://purl.org/sig/ont/fma/fma49796'], 'synonymLabels': ['Descending palatine artery'], 'label': 'descending palatine artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49796': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49796', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49796', 'parent': 'http://purl.org/sig/ont/fma/fma49791', 'children': [], 'synonymLabels': ['Lesser palatine artery'], 'label': 'lesser palatine artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49804', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49804', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': ['https://purl.org/ccf/ASCTB-TEMP_posterior-lateral-nasal-branch-of-sphenopalatine-artery', 'http://purl.org/sig/ont/fma/fma49809'], 'synonymLabels': ['Sphenopalatine artery'], 'label': 'sphenopalatine artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49809': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49809', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49809', 'parent': 'http://purl.org/sig/ont/fma/fma49804', 'children': [], 'synonymLabels': ['Posterior septal branch of sphenopalatine artery'], 'label': 'posterior septal branch of sphenopalatine artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49817': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49817', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49817', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': ['https://purl.org/ccf/ASCTB-TEMP_meningohypophyseal-artery'], 'synonymLabels': ['Cavernous branch of internal carotid artery'], 'label': 'cavernous branch of internal carotid artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4983': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4983', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4983', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': [], 'synonymLabels': ['Left seventh posterior intercostal vein'], 'label': 'left posterior intercostal vein 7'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4990', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': [], 'synonymLabels': ['Left sixth posterior intercostal vein'], 'label': 'left posterior intercostal vein 6'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49911', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49911', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Right inferior pulmonary vein'], 'label': 'right inferior pulmonary vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49913': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49913', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49913', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Left inferior pulmonary vein'], 'label': 'left inferior pulmonary vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49914': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49914', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49914', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Right superior pulmonary vein'], 'label': 'right superior pulmonary vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49916': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49916', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49916', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Left superior pulmonary vein'], 'label': 'left superior pulmonary vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma49962': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma49962', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma49962', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['Anterior ciliary artery'], 'label': 'anterior ciliary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma4997': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma4997', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma4997', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': [], 'synonymLabels': ['Left fifth posterior intercostal vein'], 'label': 'left posterior intercostal vein 5'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5004', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5004', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006665', 'children': [], 'synonymLabels': ['Left fourth posterior intercostal vein'], 'label': 'left posterior intercostal vein 4'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5032', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5032', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Left jugular lymphatic trunk'], 'label': 'left jugular lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50327': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50327', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50327', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': ['Distal medial striate artery'], 'label': 'recurrent artery of heubner'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50329', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': ['Polar frontal artery'], 'label': 'frontopolar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5033', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5033', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Left subclavian lymphatic trunk'], 'label': 'left subclavian lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50330', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50330', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': ['Callosomarginal artery'], 'label': 'callosomarginal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50337', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50337', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': ['Pericallosal artery'], 'label': 'pericallosal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50437': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50437', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50437', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Prefrontal artery'], 'label': 'prefrontal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50466': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50466', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50466', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Middle temporal branch of middle cerebral artery'], 'label': 'middle temporal branch of middle cerebral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50469': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50469', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50469', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Posterior temporal branch of middle cerebral artery'], 'label': 'posterior temporal branch of middle cerebral artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50475': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50475', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50475', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Branch of middle cerebral artery to angular gyrus'], 'label': 'artery to angular gyrus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50479': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50479', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50479', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Artery of precentral sulcus'], 'label': 'artery of precentral sulcus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50560': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50560', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50560', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001633', 'children': [], 'synonymLabels': ['Pontine artery'], 'label': 'pontine artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50624': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50624', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50624', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['Thalamoperforating artery'], 'label': 'thalamoperforating artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50629': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50629', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50629', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['Thalamogeniculate artery'], 'label': 'thalamogeniculate artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50630': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50630', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50630', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['Posterior medial choroidal artery'], 'label': 'medial posterior choroidal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50631': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50631', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50631', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['Posterior lateral choroidal artery'], 'label': 'lateral posterior choroidal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50638', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001636', 'children': [], 'synonymLabels': ['Medial occipital artery'], 'label': 'medial occipital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50771': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50771', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50771', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'children': ['http://purl.org/sig/ont/fma/fma51350'], 'synonymLabels': ['Superior petrosal sinus'], 'label': 'superior petrosal sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50781': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50781', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50781', 'parent': 'http://purl.org/sig/ont/fma/fma50784', 'children': [], 'synonymLabels': ['Occipital sinus'], 'label': 'occipital sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50784': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50784', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50784', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'children': ['http://purl.org/sig/ont/fma/fma50781', 'http://purl.obolibrary.org/obo/UBERON_0005481', 'http://purl.obolibrary.org/obo/UBERON_0001642'], 'synonymLabels': ['Sinus confluence'], 'label': 'confluence of sinuses'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50800': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50800', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50800', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007156', 'children': [], 'synonymLabels': ['Inferior laryngeal vein'], 'label': 'inferior laryngeal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50802': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50802', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50802', 'parent': 'http://purl.org/sig/ont/fma/fma50803', 'children': [], 'synonymLabels': ['Occipital vein'], 'label': 'occipital vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50803': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50803', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50803', 'parent': 'http://purl.org/sig/ont/fma/fma4746', 'children': ['http://purl.org/sig/ont/fma/fma50802'], 'synonymLabels': ['Suboccipital venous plexus'], 'label': 'suboccipital venous plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50826': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50826', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50826', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006634', 'children': [], 'synonymLabels': ['Dorsal lingual vein'], 'label': 'dorsal lingual vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50830', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50830', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006634', 'children': [], 'synonymLabels': ['Deep lingual vein'], 'label': 'deep lingual vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50836': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50836', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50836', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006634', 'children': [], 'synonymLabels': ['Sublingual vein'], 'label': 'sublingual vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50855': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50855', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50855', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001104', 'children': [], 'synonymLabels': ['Jugular venous arch'], 'label': 'jugular venous arch #2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50858': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50858', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50858', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'children': [], 'synonymLabels': ['Transverse cervical vein'], 'label': 'transverse cervical vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50863': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50863', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50863', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': [], 'synonymLabels': ['Optic nerve'], 'label': 'optic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50898': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50898', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50898', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'children': [], 'synonymLabels': ['Supratrochlear vein'], 'label': 'supratrochlear vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50910': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50910', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50910', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'children': [], 'synonymLabels': ['External nasal vein'], 'label': 'external nasal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma50997': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma50997', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma50997', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035152', 'children': [], 'synonymLabels': ['Superior thalamostriate vein'], 'label': 'superior thalamostriate vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51071', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51071', 'parent': 'http://purl.org/sig/ont/fma/fma22474', 'children': [], 'synonymLabels': ['Flexor digitorum longus'], 'label': 'flexor digitorum longus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51141': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51141', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51141', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_dorsum-of-foot-muscle', 'children': [], 'synonymLabels': ['Extensor hallucis brevis'], 'label': 'extensor hallucis brevis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51238': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51238', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51238', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001642', 'children': [], 'synonymLabels': ['Superior anastomotic vein'], 'label': 'superior anastomotic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51239', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51239', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001641', 'children': [], 'synonymLabels': ['Inferior anastomotic vein'], 'label': 'inferior anastomotic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51329', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035152', 'children': [], 'synonymLabels': ['Superior choroid vein'], 'label': 'superior choroid vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51341': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51341', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51341', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035530', 'children': [], 'synonymLabels': ['Lateral mesencephalic vein'], 'label': 'lateral mesencephalic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51350', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51350', 'parent': 'http://purl.org/sig/ont/fma/fma50771', 'children': [], 'synonymLabels': ['Superior petrosal vein'], 'label': 'superior petrosal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51770': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51770', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51770', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011192', 'children': [], 'synonymLabels': ['Ethmoidal vein'], 'label': 'ethmoidal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51798', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51798', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011192', 'children': [], 'synonymLabels': ['Anterior ciliary vein'], 'label': 'anterior ciliary vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma51965': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma51965', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma51965', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001622', 'children': [], 'synonymLabels': ['Recurrent meningeal branch of lacrimal artery'], 'label': 'recurrent meningeal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52186': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52186', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52186', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to semitendinosus'], 'label': 'muscular branch of tibial nerve to semitendinosus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52239', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52239', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018231', 'children': [], 'synonymLabels': ['Anterior vestibular artery'], 'label': 'anterior vestibular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52242', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52242', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018231', 'children': ['https://purl.org/ccf/ASCTB-TEMP_main-cochlear-artery', 'https://purl.org/ccf/ASCTB-TEMP_posterior-vestibular-artery', 'http://purl.obolibrary.org/obo/UBERON_0002505', 'http://purl.org/sig/ont/fma/fma52246'], 'synonymLabels': ['Common cochlear artery'], 'label': 'common cochlear artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52246', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52246', 'parent': 'http://purl.org/sig/ont/fma/fma52242', 'children': [], 'synonymLabels': ['Vestibulocochlear artery'], 'label': 'vestibulocochlear artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52492', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007149', 'children': [], 'synonymLabels': ['Inferior laryngeal artery'], 'label': 'inferior laryngeal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52572': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52572', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52572', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001643', 'children': ['http://purl.org/sig/ont/fma/fma52594', 'http://purl.org/sig/ont/fma/fma52582'], 'synonymLabels': ['Superior branch of oculomotor nerve'], 'label': 'superior branch of oculomotor nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52573': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52573', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52573', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001643', 'children': ['http://purl.org/sig/ont/fma/fma52578', 'http://purl.org/sig/ont/fma/fma52600', 'http://purl.org/sig/ont/fma/fma52599', 'http://purl.org/sig/ont/fma/fma52598'], 'synonymLabels': ['Inferior branch of oculomotor nerve'], 'label': 'inferior branch of oculomotor nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52578': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52578', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52578', 'parent': 'http://purl.org/sig/ont/fma/fma52573', 'children': [], 'synonymLabels': ['Nerve to ciliary ganglion'], 'label': 'nerve to ciliary ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52582': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52582', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52582', 'parent': 'http://purl.org/sig/ont/fma/fma52572', 'children': [], 'synonymLabels': ['Nerve to superior rectus'], 'label': 'nerve to superior rectus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52594': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52594', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52594', 'parent': 'http://purl.org/sig/ont/fma/fma52572', 'children': [], 'synonymLabels': ['Nerve to levator palpebrae superioris'], 'label': 'nerve to levator palpebrae superioris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52598': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52598', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52598', 'parent': 'http://purl.org/sig/ont/fma/fma52573', 'children': [], 'synonymLabels': ['Nerve to medial rectus'], 'label': 'nerve to medial rectus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52599': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52599', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52599', 'parent': 'http://purl.org/sig/ont/fma/fma52573', 'children': [], 'synonymLabels': ['Nerve to inferior rectus'], 'label': 'nerve to inferior rectus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52600': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52600', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52600', 'parent': 'http://purl.org/sig/ont/fma/fma52573', 'children': [], 'synonymLabels': ['Nerve to inferior oblique'], 'label': 'nerve to inferior oblique'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52625': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52625', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52625', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000348', 'children': [], 'synonymLabels': ['Tentorial nerve'], 'label': 'tentorial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52628', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000348', 'children': ['http://purl.org/sig/ont/fma/fma52633', 'http://purl.org/sig/ont/fma/fma52632'], 'synonymLabels': ['Lacrimal nerve'], 'label': 'lacrimal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52632', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52632', 'parent': 'http://purl.org/sig/ont/fma/fma52628', 'children': [], 'synonymLabels': ['Lacrimal nerve proper'], 'label': 'lacrimal nerve proper'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52633': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52633', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52633', 'parent': 'http://purl.org/sig/ont/fma/fma52628', 'children': [], 'synonymLabels': ['Communicating branch of lacrimal nerve with zygomaticotemporal branch of zygomatic nerve'], 'label': 'communicating branch of lacrimal nerve with zygomaticotemporal branch of zygomatic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52638', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000348', 'children': ['http://purl.org/sig/ont/fma/fma52668', 'http://purl.org/sig/ont/fma/fma52655', 'http://purl.org/sig/ont/fma/fma52642'], 'synonymLabels': ['Frontal nerve'], 'label': 'frontal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52642': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52642', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52642', 'parent': 'http://purl.org/sig/ont/fma/fma52638', 'children': ['http://purl.org/sig/ont/fma/fma52646', 'http://purl.org/sig/ont/fma/fma52648', 'http://purl.org/sig/ont/fma/fma52647'], 'synonymLabels': ['Supratrochlear nerve'], 'label': 'supratrochlear nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52646', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52646', 'parent': 'http://purl.org/sig/ont/fma/fma52642', 'children': [], 'synonymLabels': ['Conjunctival branch of supratrochlear nerve'], 'label': 'branch of supratrochlear nerve to conjunctiva'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52647', 'parent': 'http://purl.org/sig/ont/fma/fma52642', 'children': [], 'synonymLabels': ['Cutaneous branch of supratrochlear nerve to upper eyelid'], 'label': 'branch of supratrochlear nerve to skin of upper eyelid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52648', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52648', 'parent': 'http://purl.org/sig/ont/fma/fma52642', 'children': [], 'synonymLabels': ['Cutaneous branch of supratrochlear nerve to forehead'], 'label': 'branch of supratrochlear nerve to skin of forehead'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52655': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52655', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52655', 'parent': 'http://purl.org/sig/ont/fma/fma52638', 'children': ['http://purl.org/sig/ont/fma/fma52660', 'http://purl.org/sig/ont/fma/fma52659', 'http://purl.org/sig/ont/fma/fma52665'], 'synonymLabels': ['Supra-orbital nerve'], 'label': 'supraorbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52659': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52659', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52659', 'parent': 'http://purl.org/sig/ont/fma/fma52655', 'children': [], 'synonymLabels': ['Medial branch of supra-orbital nerve'], 'label': 'medial branch of supraorbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52660': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52660', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52660', 'parent': 'http://purl.org/sig/ont/fma/fma52655', 'children': [], 'synonymLabels': ['Lateral branch of supra-orbital nerve'], 'label': 'lateral branch of supraorbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52665': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52665', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52665', 'parent': 'http://purl.org/sig/ont/fma/fma52655', 'children': [], 'synonymLabels': ['Supra-orbital nerve proper'], 'label': 'supra-orbital nerve proper'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52668': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52668', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52668', 'parent': 'http://purl.org/sig/ont/fma/fma52638', 'children': ['http://purl.org/sig/ont/fma/fma52675', 'http://purl.org/sig/ont/fma/fma52672', 'http://purl.org/sig/ont/fma/fma52693', 'http://purl.org/sig/ont/fma/fma52691', 'http://purl.org/sig/ont/fma/fma52714'], 'synonymLabels': ['Nasociliary nerve'], 'label': 'nasociliary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52672': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52672', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52672', 'parent': 'http://purl.org/sig/ont/fma/fma52668', 'children': [], 'synonymLabels': ['Communicating branch of nasociliary nerve with ciliary ganglion'], 'label': 'communicating branch of nasociliary nerve with ciliary ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52675': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52675', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52675', 'parent': 'http://purl.org/sig/ont/fma/fma52668', 'children': ['http://purl.org/sig/ont/fma/fma52688', 'http://purl.org/sig/ont/fma/fma52679'], 'synonymLabels': ['Anterior ethmoidal nerve'], 'label': 'anterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52679', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52679', 'parent': 'http://purl.org/sig/ont/fma/fma52675', 'children': ['http://purl.org/sig/ont/fma/fma52681', 'http://purl.org/sig/ont/fma/fma52680'], 'synonymLabels': ['Internal nasal branch of anterior ethmoidal nerve'], 'label': 'internal nasal branch of anterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52680': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52680', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52680', 'parent': 'http://purl.org/sig/ont/fma/fma52679', 'children': [], 'synonymLabels': ['Medial internal nasal branch of anterior ethmoidal nerve'], 'label': 'medial internal nasal branch of anterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52681': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52681', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52681', 'parent': 'http://purl.org/sig/ont/fma/fma52679', 'children': [], 'synonymLabels': ['Lateral internal nasal branch of anterior ethmoidal nerve'], 'label': 'lateral internal nasal branch of anterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52688': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52688', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52688', 'parent': 'http://purl.org/sig/ont/fma/fma52675', 'children': [], 'synonymLabels': ['External nasal nerve'], 'label': 'external nasal branch of anterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52691': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52691', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52691', 'parent': 'http://purl.org/sig/ont/fma/fma52668', 'children': ['http://purl.org/sig/ont/fma/fma52692', 'http://purl.org/sig/ont/fma/fma52695', 'http://purl.org/sig/ont/fma/fma52694'], 'synonymLabels': ['Long ciliary nerve'], 'label': 'long ciliary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52692', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52692', 'parent': 'http://purl.org/sig/ont/fma/fma52691', 'children': [], 'synonymLabels': ['Long ciliary nerve to ciliary body'], 'label': 'long ciliary nerve to ciliary body'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52693': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52693', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52693', 'parent': 'http://purl.org/sig/ont/fma/fma52668', 'children': ['http://purl.org/sig/ont/fma/fma52705', 'http://purl.org/sig/ont/fma/fma52711', 'http://purl.org/sig/ont/fma/fma52708'], 'synonymLabels': ['Infratrochlear nerve'], 'label': 'infratrochlear nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52694': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52694', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52694', 'parent': 'http://purl.org/sig/ont/fma/fma52691', 'children': [], 'synonymLabels': ['Long ciliary nerve to iris'], 'label': 'long ciliary nerve to iris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52695': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52695', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52695', 'parent': 'http://purl.org/sig/ont/fma/fma52691', 'children': [], 'synonymLabels': ['Long ciliary nerve to dilatator pupillae'], 'label': 'long ciliary nerve to dilatator pupillae'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52705': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52705', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52705', 'parent': 'http://purl.org/sig/ont/fma/fma52693', 'children': [], 'synonymLabels': ['Cutaneous branch of infratrochlear nerve to eyelid'], 'label': 'cutaneous branch of infratrochlear nerve to eyelid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52708', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52708', 'parent': 'http://purl.org/sig/ont/fma/fma52693', 'children': [], 'synonymLabels': ['Palpebral branch of infratrochlear nerve'], 'label': 'palpebral branch of infratrochlear nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52711', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52711', 'parent': 'http://purl.org/sig/ont/fma/fma52693', 'children': [], 'synonymLabels': ['Lacrimal branch of infratrochlear nerve'], 'label': 'lacrimal branch of infratrochlear nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52714', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52714', 'parent': 'http://purl.org/sig/ont/fma/fma52668', 'children': ['http://purl.org/sig/ont/fma/fma52742', 'http://purl.org/sig/ont/fma/fma52718', 'http://purl.org/sig/ont/fma/fma52719'], 'synonymLabels': ['Posterior ethmoidal nerve'], 'label': 'posterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52718': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52718', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52718', 'parent': 'http://purl.org/sig/ont/fma/fma52714', 'children': [], 'synonymLabels': ['Branch of posterior ethmoidal nerve to ethmoidal sinus'], 'label': 'branch of posterior ethmoidal nerve to ethmoidal sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52719': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52719', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52719', 'parent': 'http://purl.org/sig/ont/fma/fma52714', 'children': [], 'synonymLabels': ['Branch of posterior ethmoidal nerve to sphenoidal sinus'], 'label': 'branch of posterior ethmoidal nerve to sphenoidal sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52728': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52728', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52728', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': ['Middle meningeal nerve'], 'label': 'meningeal branch of maxillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52731': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52731', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52731', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': ['Ganglionic branch of maxillary nerve to pterygopalatine ganglion'], 'label': 'pterygopalatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52742': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52742', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52742', 'parent': 'http://purl.org/sig/ont/fma/fma52714', 'children': [], 'synonymLabels': ['Anterior meningeal branch of posterior ethmoidal nerve'], 'label': 'anterior meningeal branch of posterior ethmoidal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52754': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52754', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52754', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': ['http://purl.org/sig/ont/fma/fma52772', 'http://purl.org/sig/ont/fma/fma52755', 'http://purl.org/sig/ont/fma/fma52756'], 'synonymLabels': ['Orbital branch of maxillary nerve'], 'label': 'orbital branch of maxillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52755': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52755', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52755', 'parent': 'http://purl.org/sig/ont/fma/fma52754', 'children': [], 'synonymLabels': ['Orbital branch of maxillary nerve to orbitalis'], 'label': 'orbital branch of maxillary nerve to orbitalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52756': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52756', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52756', 'parent': 'http://purl.org/sig/ont/fma/fma52754', 'children': [], 'synonymLabels': ['Orbital branch of maxillary nerve to sphenoidal sinus'], 'label': 'orbital branch of maxillary nerve to sphenoidal sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52772': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52772', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52772', 'parent': 'http://purl.org/sig/ont/fma/fma52754', 'children': [], 'synonymLabels': ['Orbital branch of maxillary nerve to ethmoidal sinus'], 'label': 'orbital branch of maxillary nerve to ethmoidal sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52782', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52782', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': ['Lateral posterior superior nasal nerve'], 'label': 'lateral posterior superior nasal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52783': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52783', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52783', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': ['Medial posterior superior nasal nerve'], 'label': 'medial posterior superior nasal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52797': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52797', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52797', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': ['Nasopalatine nerve'], 'label': \"scarpa's nerve\"}),\n",
      "  'http://purl.org/sig/ont/fma/fma52802': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52802', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52802', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': ['http://purl.org/sig/ont/fma/fma52814', 'http://purl.org/sig/ont/fma/fma52815', 'http://purl.org/sig/ont/fma/fma52816', 'http://purl.org/sig/ont/fma/fma52823'], 'synonymLabels': ['Greater palatine nerve'], 'label': 'greater palatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52805', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52805', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': ['http://purl.org/sig/ont/fma/fma52925', 'http://purl.org/sig/ont/fma/fma52839', 'http://purl.org/sig/ont/fma/fma52843'], 'synonymLabels': ['Lesser palatine nerve'], 'label': 'lesser palatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52814': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52814', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52814', 'parent': 'http://purl.org/sig/ont/fma/fma52802', 'children': [], 'synonymLabels': ['Branch of greater palatine nerve to gingiva'], 'label': 'branch of greater palatine nerve to gingiva'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52815': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52815', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52815', 'parent': 'http://purl.org/sig/ont/fma/fma52802', 'children': [], 'synonymLabels': ['Branch of greater palatine nerve to mucosa of hard palate'], 'label': 'branch of greater palatine nerve to mucosa of hard palate'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52816': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52816', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52816', 'parent': 'http://purl.org/sig/ont/fma/fma52802', 'children': [], 'synonymLabels': ['Communicating branch of greater palatine nerve with nasopalatine nerve'], 'label': 'communicating branch of greater palatine nerve with nasopalatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52823': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52823', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52823', 'parent': 'http://purl.org/sig/ont/fma/fma52802', 'children': [], 'synonymLabels': ['Posterior inferior nasal nerve'], 'label': 'posterior inferior nasal branch of greater palatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52828': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52828', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52828', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': ['Ramus of mandible'], 'label': 'ramus of mandible'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52833': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52833', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52833', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': ['Coronoid process of mandible'], 'label': 'coronoid process of mandible'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52839', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52839', 'parent': 'http://purl.org/sig/ont/fma/fma52805', 'children': [], 'synonymLabels': ['Tonsillar branch of lesser palatine nerve'], 'label': 'tonsillar branch of lesser palatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52843': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52843', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52843', 'parent': 'http://purl.org/sig/ont/fma/fma52805', 'children': [], 'synonymLabels': ['Uvular branch of lesser palatine nerve'], 'label': 'uvular branch of lesser palatine nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52899': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52899', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52899', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001682', 'children': [], 'synonymLabels': ['Perpendicular plate of palatine bone'], 'label': 'perpendicular plate of palatine bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52901': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52901', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52901', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001682', 'children': [], 'synonymLabels': ['Horizontal plate of palatine bone'], 'label': 'horizontal plate of palatine bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52925': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52925', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52925', 'parent': 'http://purl.org/sig/ont/fma/fma52805', 'children': [], 'synonymLabels': ['Branch of lesser palatine nerve to soft palate'], 'label': 'branch of lesser palatine nerve to soft palate'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52930': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52930', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52930', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': ['http://purl.org/sig/ont/fma/fma52935', 'http://purl.org/sig/ont/fma/fma52932', 'http://purl.org/sig/ont/fma/fma52931'], 'synonymLabels': ['Superior alveolar nerve'], 'label': 'superior alveolar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52931': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52931', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52931', 'parent': 'http://purl.org/sig/ont/fma/fma52930', 'children': [], 'synonymLabels': ['Posterior superior alveolar nerve'], 'label': 'posterior superior alveolar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52932': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52932', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52932', 'parent': 'http://purl.org/sig/ont/fma/fma52930', 'children': [], 'synonymLabels': ['Middle superior alveolar nerve'], 'label': 'middle superior alveolar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52935': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52935', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52935', 'parent': 'http://purl.org/sig/ont/fma/fma52930', 'children': [], 'synonymLabels': ['Anterior superior alveolar nerve'], 'label': 'anterior superior alveolar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52967': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52967', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52967', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': ['http://purl.org/sig/ont/fma/fma52973', 'http://purl.org/sig/ont/fma/fma52972'], 'synonymLabels': ['Zygomatic nerve'], 'label': 'zygomatic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52972': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52972', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52972', 'parent': 'http://purl.org/sig/ont/fma/fma52967', 'children': [], 'synonymLabels': ['Zygomaticotemporal branch of zygomatic nerve'], 'label': 'zygomaticotemporal branch of zygomatic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52973': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52973', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52973', 'parent': 'http://purl.org/sig/ont/fma/fma52967', 'children': [], 'synonymLabels': ['Zygomaticofacial branch of zygomatic nerve'], 'label': 'zygomaticofacial branch of zygomatic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52978': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52978', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52978', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': ['http://purl.org/sig/ont/fma/fma52984', 'http://purl.org/sig/ont/fma/fma52983', 'http://purl.org/sig/ont/fma/fma52985', 'http://purl.org/sig/ont/fma/fma52986'], 'synonymLabels': ['Infra-orbital nerve'], 'label': 'infraorbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52983': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52983', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52983', 'parent': 'http://purl.org/sig/ont/fma/fma52978', 'children': [], 'synonymLabels': ['Inferior palpebral branch of infra-orbital nerve'], 'label': 'inferior palpebral branch of infra-orbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52984': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52984', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52984', 'parent': 'http://purl.org/sig/ont/fma/fma52978', 'children': [], 'synonymLabels': ['External nasal branch of infra-orbital nerve'], 'label': 'external nasal branch of infra-orbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52985': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52985', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52985', 'parent': 'http://purl.org/sig/ont/fma/fma52978', 'children': [], 'synonymLabels': ['Internal nasal branch of infra-orbital nerve'], 'label': 'internal nasal branch of infra-orbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma52986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma52986', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma52986', 'parent': 'http://purl.org/sig/ont/fma/fma52978', 'children': [], 'synonymLabels': ['Superior labial branch of infra-orbital nerve'], 'label': 'superior labial branch of infra-orbital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53000', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53000', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': ['http://purl.org/sig/ont/fma/fma53212', 'http://purl.org/sig/ont/fma/fma53196', 'http://purl.org/sig/ont/fma/fma82731', 'http://purl.org/sig/ont/fma/fma53209', 'http://purl.org/sig/ont/fma/fma53221', 'http://purl.org/sig/ont/fma/fma53206', 'http://purl.org/sig/ont/fma/fma53215'], 'synonymLabels': ['Auriculotemporal nerve'], 'label': 'auriculotemporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53047': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53047', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53047', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': ['http://purl.org/sig/ont/fma/fma53050', 'http://purl.org/sig/ont/fma/fma53051'], 'synonymLabels': ['Meningeal branch of mandibular nerve'], 'label': 'meningeal branch of mandibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53050', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53050', 'parent': 'http://purl.org/sig/ont/fma/fma53047', 'children': [], 'synonymLabels': ['Anterior meningeal branch of mandibular nerve'], 'label': 'anterior meningeal branch of mandibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53051', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53051', 'parent': 'http://purl.org/sig/ont/fma/fma53047', 'children': [], 'synonymLabels': ['Posterior meningeal branch of mandibular nerve'], 'label': 'posterior meningeal branch of mandibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53056', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53056', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': [], 'synonymLabels': ['Medial pterygoid nerve'], 'label': 'branch of mandibular nerve to medial pterygoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53066', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53066', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': ['http://purl.org/sig/ont/fma/fma53184', 'http://purl.org/sig/ont/fma/fma53107', 'http://purl.org/sig/ont/fma/fma53181'], 'synonymLabels': ['Buccal nerve'], 'label': 'buccinator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53071', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53071', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': [], 'synonymLabels': ['Branch of mandibular nerve to otic ganglion'], 'label': 'branch of mandibular nerve to otic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53075', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53075', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': [], 'synonymLabels': ['Nerve to tensor veli palatini'], 'label': 'branch of mandibular nerve to tensor veli palatini'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53097', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53097', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': ['Supra-orbital margin of frontal bone'], 'label': 'supraorbital margin of frontal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53100', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53100', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': [], 'synonymLabels': ['Nerve to tensor tympani'], 'label': 'branch of mandibular nerve to tensor tympani'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53103': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53103', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53103', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': ['http://purl.org/sig/ont/fma/fma53190', 'http://purl.org/sig/ont/fma/fma53189'], 'synonymLabels': ['Masseteric nerve'], 'label': 'masseteric nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53107', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53107', 'parent': 'http://purl.org/sig/ont/fma/fma53066', 'children': [], 'synonymLabels': ['Lateral pterygoid nerve'], 'label': 'branch of buccal nerve to lateral pterygoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53112': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53112', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53112', 'parent': 'http://purl.org/sig/ont/fma/fma53187', 'children': [], 'synonymLabels': ['Anterior deep temporal nerve'], 'label': 'anterior deep temporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53113': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53113', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53113', 'parent': 'http://purl.org/sig/ont/fma/fma53187', 'children': [], 'synonymLabels': ['Posterior deep temporal nerve'], 'label': 'posterior deep temporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53130': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53130', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53130', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'children': [], 'synonymLabels': ['Superior temporal line of parietal bone'], 'label': 'superior temporal line of parietal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53132', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53132', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'children': [], 'synonymLabels': ['Inferior temporal line of parietal bone'], 'label': 'inferior temporal line of parietal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53181': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53181', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53181', 'parent': 'http://purl.org/sig/ont/fma/fma53066', 'children': [], 'synonymLabels': ['Cutaneous branch of buccal nerve'], 'label': 'cutaneous branch of buccal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53184', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53184', 'parent': 'http://purl.org/sig/ont/fma/fma53066', 'children': [], 'synonymLabels': ['Branch of buccal nerve to gingiva'], 'label': 'branch of buccal nerve to gingiva'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53187': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53187', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53187', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': ['http://purl.org/sig/ont/fma/fma53112', 'http://purl.org/sig/ont/fma/fma53113'], 'synonymLabels': ['Deep temporal nerve'], 'label': 'deep temporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53189', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53189', 'parent': 'http://purl.org/sig/ont/fma/fma53103', 'children': [], 'synonymLabels': ['Masseteric nerve proper'], 'label': 'masseteric nerve proper'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53190': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53190', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53190', 'parent': 'http://purl.org/sig/ont/fma/fma53103', 'children': [], 'synonymLabels': ['Branch of masseteric nerve to temporomandibular joint'], 'label': 'branch of masseteric nerve to temporomandibular joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53196', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53196', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': ['http://purl.org/sig/ont/fma/fma53201', 'http://purl.org/sig/ont/fma/fma53200'], 'synonymLabels': ['External acoustic meatus nerve'], 'label': 'branch of auriculotemporal nerve to external acoustic meatus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53200', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53200', 'parent': 'http://purl.org/sig/ont/fma/fma53196', 'children': [], 'synonymLabels': ['Cutaneous branch of external acoustic meatus nerve'], 'label': 'cutaneous branch of external acoustic meatus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53201': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53201', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53201', 'parent': 'http://purl.org/sig/ont/fma/fma53196', 'children': [], 'synonymLabels': ['Branch of external acoustic meatus nerve to tympanic membrane'], 'label': 'branch of external acoustic meatus nerve to tympanic membrane'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53206': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53206', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53206', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': [], 'synonymLabels': ['Parotid branch of auriculotemporal nerve'], 'label': 'parotid branch of auriculotemporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53209': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53209', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53209', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': [], 'synonymLabels': ['Communicating branch of auriculotemporal nerve with facial nerve'], 'label': 'communicating branch of auriculotemporal nerve with facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53212': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53212', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53212', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': [], 'synonymLabels': ['Anterior auricular nerve'], 'label': 'anterior auricular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53215', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53215', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': [], 'synonymLabels': ['Superficial temporal branch of auriculotemporal nerve'], 'label': 'superficial temporal branch of auriculotemporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53218': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53218', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53218', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000375', 'children': ['http://purl.org/sig/ont/fma/fma53240', 'http://purl.org/sig/ont/fma/fma53237', 'http://purl.org/sig/ont/fma/fma53225', 'http://purl.org/sig/ont/fma/fma53243', 'http://purl.org/sig/ont/fma/fma53234', 'http://purl.org/sig/ont/fma/fma53231'], 'synonymLabels': ['Lingual nerve'], 'label': 'lingual nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53221': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53221', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53221', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': [], 'synonymLabels': ['Communicating branch of auriculotemporal nerve with otic ganglion'], 'label': 'communicating branch of auriculotemporal nerve with otic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53225': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53225', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53225', 'parent': 'http://purl.org/sig/ont/fma/fma53218', 'children': [], 'synonymLabels': ['Communicating branch of lingual nerve with hypoglossal nerve'], 'label': 'communicating branch of lingual nerve with hypoglossal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53228', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53228', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Chorda tympani'], 'label': 'chorda tympani nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53231', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53231', 'parent': 'http://purl.org/sig/ont/fma/fma53218', 'children': [], 'synonymLabels': ['Sublingual nerve'], 'label': 'sublingual nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53234', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53234', 'parent': 'http://purl.org/sig/ont/fma/fma53218', 'children': [], 'synonymLabels': ['Lingual branch of lingual nerve'], 'label': 'lingual branch of lingual nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53237': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53237', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53237', 'parent': 'http://purl.org/sig/ont/fma/fma53218', 'children': [], 'synonymLabels': ['Branch of lingual nerve to submandibular ganglion'], 'label': 'branch of lingual nerve to submandibular ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53240', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53240', 'parent': 'http://purl.org/sig/ont/fma/fma53218', 'children': [], 'synonymLabels': ['Branch of lingual nerve to sublingual ganglion'], 'label': 'branch of lingual nerve to sublingual ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53243', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53243', 'parent': 'http://purl.org/sig/ont/fma/fma53218', 'children': ['http://purl.org/sig/ont/fma/fma53250', 'http://purl.org/sig/ont/fma/fma53247'], 'synonymLabels': ['Inferior alveolar nerve'], 'label': 'inferior alveolar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53247': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53247', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53247', 'parent': 'http://purl.org/sig/ont/fma/fma53243', 'children': ['http://purl.org/sig/ont/fma/fma82561', 'http://purl.org/sig/ont/fma/fma82560'], 'synonymLabels': ['Mylohyoid nerve'], 'label': 'mylohyoid branch of inferior alveolar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53250', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53250', 'parent': 'http://purl.org/sig/ont/fma/fma53243', 'children': ['http://purl.org/sig/ont/fma/fma53256', 'http://purl.org/sig/ont/fma/fma53255', 'http://purl.org/sig/ont/fma/fma53254'], 'synonymLabels': ['Mental nerve'], 'label': 'mental nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53254', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53254', 'parent': 'http://purl.org/sig/ont/fma/fma53250', 'children': [], 'synonymLabels': ['Mental branch of mental nerve'], 'label': 'mental branch of mental nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53255', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53255', 'parent': 'http://purl.org/sig/ont/fma/fma53250', 'children': [], 'synonymLabels': ['Labial branch of mental nerve'], 'label': 'labial branch of mental nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53256': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53256', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53256', 'parent': 'http://purl.org/sig/ont/fma/fma53250', 'children': [], 'synonymLabels': ['Gingival branch of mental nerve'], 'label': 'gingival branch of mental nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53275': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53275', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53275', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Stapedius nerve'], 'label': 'branch of facial nerve to stapedius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53278': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53278', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53278', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': ['http://purl.org/sig/ont/fma/fma53282', 'http://purl.org/sig/ont/fma/fma53283'], 'synonymLabels': ['Posterior auricular nerve'], 'label': 'auricularis posterior branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53282': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53282', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53282', 'parent': 'http://purl.org/sig/ont/fma/fma53278', 'children': ['http://purl.org/sig/ont/fma/fma82842', 'http://purl.org/sig/ont/fma/fma82610', 'http://purl.org/sig/ont/fma/fma82607'], 'synonymLabels': ['Auricular branch of posterior auricular nerve'], 'label': 'auricular branch of posterior auricular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53283': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53283', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53283', 'parent': 'http://purl.org/sig/ont/fma/fma53278', 'children': [], 'synonymLabels': ['Occipital branch of posterior auricular nerve'], 'label': 'branch of posterior auricular nerve to occipitalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53288': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53288', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53288', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Branch of facial nerve to posterior belly of digastric'], 'label': 'digastric branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53291', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53291', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': ['http://purl.org/sig/ont/fma/fma53378', 'http://purl.org/sig/ont/fma/fma53379', 'http://purl.org/sig/ont/fma/fma53376', 'http://purl.org/sig/ont/fma/fma53377', 'http://purl.org/sig/ont/fma/fma79880', 'http://purl.org/sig/ont/fma/fma82613', 'http://purl.org/sig/ont/fma/fma82603', 'http://purl.org/sig/ont/fma/fma82674', 'http://purl.org/sig/ont/fma/fma82619', 'http://purl.org/sig/ont/fma/fma82622', 'http://purl.org/sig/ont/fma/fma82616'], 'synonymLabels': ['Temporal branch of facial nerve'], 'label': 'temporal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53293', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53293', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Communicating branch of facial nerve with glossopharyngeal nerve'], 'label': 'communicating branch of facial nerve with glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53298', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53298', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Nerve to stylohyoid'], 'label': 'stylohyoid branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53303', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53303', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Frontal branch of facial nerve'], 'label': 'parotid branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53307': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53307', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53307', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': ['http://purl.org/sig/ont/fma/fma53314', 'http://purl.org/sig/ont/fma/fma53315', 'http://purl.org/sig/ont/fma/fma53316'], 'synonymLabels': ['Zygomatic branch of facial nerve'], 'label': 'zygomatic branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53310': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53310', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53310', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': ['http://purl.org/sig/ont/fma/fma53362', 'http://purl.org/sig/ont/fma/fma53325', 'http://purl.org/sig/ont/fma/fma53324'], 'synonymLabels': ['Buccal branch of facial nerve'], 'label': 'buccal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53314', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53314', 'parent': 'http://purl.org/sig/ont/fma/fma53307', 'children': [], 'synonymLabels': ['Branch of zygomatic branch of facial nerve to orbicularis oculi'], 'label': 'branch of zygomatic branch of facial nerve to orbicularis oculi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53315', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53315', 'parent': 'http://purl.org/sig/ont/fma/fma53307', 'children': [], 'synonymLabels': ['Communicating branch of zygomatic branch of facial nerve with lacrimal nerve'], 'label': 'communicating branch of zygomatic branch of facial nerve with lacrimal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53316', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53316', 'parent': 'http://purl.org/sig/ont/fma/fma53307', 'children': [], 'synonymLabels': ['Communicating branch of zygomatic branch of facial nerve with zygomaticofacial branch of zygomatic nerve'], 'label': 'communicating branch of zygomatic branch of facial nerve with zygomaticofacial branch of zygomatic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53324', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53324', 'parent': 'http://purl.org/sig/ont/fma/fma53310', 'children': ['http://purl.org/sig/ont/fma/fma53332', 'http://purl.org/sig/ont/fma/fma53331', 'http://purl.org/sig/ont/fma/fma53370', 'http://purl.org/sig/ont/fma/fma53369', 'http://purl.org/sig/ont/fma/fma53330'], 'synonymLabels': ['Superficial buccal branch of facial nerve'], 'label': 'superficial buccal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53325': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53325', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53325', 'parent': 'http://purl.org/sig/ont/fma/fma53310', 'children': ['http://purl.org/sig/ont/fma/fma53340', 'http://purl.org/sig/ont/fma/fma53339'], 'synonymLabels': ['Deep buccal branch of facial nerve'], 'label': 'deep buccal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53330', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53330', 'parent': 'http://purl.org/sig/ont/fma/fma53324', 'children': [], 'synonymLabels': ['Nerve to procerus'], 'label': 'uperficial buccal branch of facial nerve to procerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53331', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53331', 'parent': 'http://purl.org/sig/ont/fma/fma53324', 'children': [], 'synonymLabels': ['Communicating branch of superficial buccal branch of facial nerve with infratrochlear nerve'], 'label': 'communicating branch of superficial buccal branch of facial nerve with infratrochlear nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53332', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53332', 'parent': 'http://purl.org/sig/ont/fma/fma53324', 'children': [], 'synonymLabels': ['Communicating branch of superficial buccal branch of facial nerve with external nasal nerve'], 'label': 'communicating branch of superficial buccal branch of facial nerve with external nasal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53339': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53339', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53339', 'parent': 'http://purl.org/sig/ont/fma/fma53325', 'children': ['http://purl.org/sig/ont/fma/fma53352', 'http://purl.org/sig/ont/fma/fma82660', 'http://purl.org/sig/ont/fma/fma82669', 'http://purl.org/sig/ont/fma/fma53349'], 'synonymLabels': ['Upper deep buccal branch of facial nerve'], 'label': 'upper deep buccal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53340', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53340', 'parent': 'http://purl.org/sig/ont/fma/fma53325', 'children': ['http://purl.org/sig/ont/fma/fma53357', 'http://purl.org/sig/ont/fma/fma53356', 'http://purl.org/sig/ont/fma/fma82666'], 'synonymLabels': ['Lower deep buccal branch of facial nerve'], 'label': 'lower deep buccal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53349': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53349', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53349', 'parent': 'http://purl.org/sig/ont/fma/fma53339', 'children': [], 'synonymLabels': ['Nerve to zygomaticus major'], 'label': 'nerve to zygomaticus major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53352': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53352', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53352', 'parent': 'http://purl.org/sig/ont/fma/fma53339', 'children': [], 'synonymLabels': ['Nerve to levator labii superioris'], 'label': 'branch of upper deep buccal branch of facial nerve to levator labii superioris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53356': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53356', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53356', 'parent': 'http://purl.org/sig/ont/fma/fma53340', 'children': [], 'synonymLabels': ['Branch of lower deep buccal branch of facial nerve to orbicularis oris'], 'label': 'branch of lower deep buccal branch of facial nerve to orbicularis oris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53357': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53357', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53357', 'parent': 'http://purl.org/sig/ont/fma/fma53340', 'children': [], 'synonymLabels': ['Nerve to buccinator'], 'label': 'branch of lower deep buccal branch of facial nerve to buccinator'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53362': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53362', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53362', 'parent': 'http://purl.org/sig/ont/fma/fma53310', 'children': [], 'synonymLabels': ['Communicating branch of buccal branch of facial nerve with buccal nerve'], 'label': 'communicating branch of buccal branch of facial nerve with buccal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53365': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53365', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53365', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': ['http://purl.org/sig/ont/fma/fma82647', 'http://purl.org/sig/ont/fma/fma53390', 'http://purl.org/sig/ont/fma/fma53393', 'http://purl.org/sig/ont/fma/fma82654', 'http://purl.org/sig/ont/fma/fma82657', 'http://purl.org/sig/ont/fma/fma81179', 'http://purl.org/sig/ont/fma/fma82651'], 'synonymLabels': ['Marginal mandibular branch of facial nerve'], 'label': 'marginal mandibular branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53369': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53369', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53369', 'parent': 'http://purl.org/sig/ont/fma/fma53324', 'children': [], 'synonymLabels': ['Nerve to nasalis'], 'label': 'superficial buccal branch of facial nerve to nasalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53370': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53370', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53370', 'parent': 'http://purl.org/sig/ont/fma/fma53324', 'children': [], 'synonymLabels': ['Nerve to depressor septi nasi'], 'label': 'nerve to depressor septi nasi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53376': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53376', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53376', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to frontalis'], 'label': 'branch of temporal branch of facial nerve to frontalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53377': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53377', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53377', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Branch of temporal branch of facial nerve to orbicularis oculi'], 'label': 'branch of temporal branch of facial nerve to orbicularis oculi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53378': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53378', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53378', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to auricularis superior'], 'label': 'branch of temporal branch of facial nerve to auricularis superior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53379', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53379', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to corrugator supercilii'], 'label': 'branch of temporal branch of facial nerve to corrugator supercilii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53390', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53390', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Nerve to risorius'], 'label': 'branch of marginal mandibular branch of facial nerve to risorius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53393': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53393', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53393', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Communicating branch of marginal mandibular branch of facial nerve with mental nerve'], 'label': 'communicating branch of marginal mandibular branch of facial nerve with mental nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53396', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53396', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': ['http://purl.org/sig/ont/fma/fma53403', 'http://purl.org/sig/ont/fma/fma53406'], 'synonymLabels': ['Cervical branch of facial nerve'], 'label': 'cervical branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53401', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53401', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001648', 'children': ['http://purl.org/sig/ont/fma/fma53455', 'http://purl.org/sig/ont/fma/fma53458', 'http://purl.org/sig/ont/fma/fma53461', 'http://purl.org/sig/ont/fma/fma53464', 'http://purl.org/sig/ont/fma/fma53467', 'http://purl.org/sig/ont/fma/fma53434', 'http://purl.org/sig/ont/fma/fma53442'], 'synonymLabels': ['Vestibular nerve'], 'label': 'vestibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53403': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53403', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53403', 'parent': 'http://purl.org/sig/ont/fma/fma53396', 'children': [], 'synonymLabels': ['Nerve to platysma'], 'label': 'branch of cervical branch of facial nerve to platysma'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53406': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53406', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53406', 'parent': 'http://purl.org/sig/ont/fma/fma53396', 'children': [], 'synonymLabels': ['Communicating branch of cervical branch of facial nerve with transverse cutaneous cervical nerve'], 'label': 'communicating branch of cervical branch of facial nerve with transverse cutaneous cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53417': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53417', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53417', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Greater petrosal nerve'], 'label': 'greater superficial petrosal branch of facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53425': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53425', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53425', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Communicating branch of sensory root of facial nerve with tympanic plexus'], 'label': 'cmmunicating branch of intermediate nerve with tympanic plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53426': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53426', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53426', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001647', 'children': [], 'synonymLabels': ['Communicating branch of sensory root of facial nerve with vagus nerve'], 'label': 'communicating branch of intermediate nerve with vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53431': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53431', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53431', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001648', 'children': [], 'synonymLabels': ['Cochlear nerve'], 'label': 'auditory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53434': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53434', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53434', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Utricular nerve'], 'label': 'utricular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53442', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53442', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Utriculo-ampullary nerve'], 'label': 'utriculo-ampullary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53455': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53455', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53455', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Anterior ampullary nerve'], 'label': 'anterior ampullary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53458': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53458', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53458', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Cochlear communicating branch of vestibular nerve'], 'label': 'cochlear communicating branch of vestibular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53461': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53461', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53461', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Lateral ampullary nerve'], 'label': 'lateral ampullary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53464': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53464', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53464', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Posterior ampullary nerve'], 'label': 'posterior ampullary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53467': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53467', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53467', 'parent': 'http://purl.org/sig/ont/fma/fma53401', 'children': [], 'synonymLabels': ['Saccular nerve'], 'label': 'saccular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53480': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53480', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53480', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Tympanic nerve'], 'label': \"jacobson's nerve\"}),\n",
      "  'http://purl.org/sig/ont/fma/fma53483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53483', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Communicating branch of glossopharyngeal nerve with auricular branch of vagus nerve'], 'label': 'communicating branch of glossopharyngeal nerve with auricular branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53486': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53486', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53486', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Pharyngeal branch of glossopharyngeal nerve'], 'label': 'pharyngeal branch of glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53487': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53487', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53487', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Nerve to stylopharyngeus'], 'label': 'stylopharyngeal branch of glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53488', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53488', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Carotid sinus nerve'], 'label': 'carotid branch of glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53489': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53489', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53489', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Tonsillar branch of glossopharyngeal nerve'], 'label': 'tonsillar branch of glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53490': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53490', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53490', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': ['http://purl.org/sig/ont/fma/fma53518', 'http://purl.org/sig/ont/fma/fma53517'], 'synonymLabels': ['Lingual branch of glossopharyngeal nerve'], 'label': 'lingual branch of glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53491': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53491', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53491', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Lesser petrosal nerve'], 'label': 'lesser superficial petrosal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53492', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Communicating branch of glossopharyngeal nerve with auriculotemporal nerve'], 'label': 'communicating branch of glossopharyngeal nerve with auriculotemporal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53493': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53493', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53493', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Communicating branch of glossopharyngeal nerve with chorda tympani'], 'label': 'communicating branch of glossopharyngeal nerve with chorda tympani'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53517': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53517', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53517', 'parent': 'http://purl.org/sig/ont/fma/fma53490', 'children': [], 'synonymLabels': ['Lingual branch of glossopharyngeal nerve to vallate papillae'], 'label': 'lingual branch of glossopharyngeal nerve to vallate papillae'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53518': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53518', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53518', 'parent': 'http://purl.org/sig/ont/fma/fma53490', 'children': [], 'synonymLabels': ['Lingual branch of glossopharyngeal nerve to postsulcal part of tongue'], 'label': 'lingual branch of glossopharyngeal nerve to postsulcal part of tongue'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53524': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53524', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53524', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Branch of recurrent laryngeal nerve to inferior pharyngeal constrictor'], 'label': 'branch of recurrent laryngeal nerve to inferior pharyngeal constrictor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53526': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53526', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53526', 'parent': 'http://purl.org/sig/ont/fma/fma6246', 'children': [], 'synonymLabels': ['Communicating branch of recurrent laryngeal nerve with internal laryngeal nerve'], 'label': 'communicating branch of recurrent laryngeal nerve with internal laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53543', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53543', 'parent': 'http://purl.org/sig/ont/fma/fma6242', 'children': [], 'synonymLabels': ['Lower branch of internal laryngeal nerve to arytenoideus'], 'label': 'lower branch of internal laryngeal nerve to arytenoideus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53544': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53544', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53544', 'parent': 'http://purl.org/sig/ont/fma/fma6242', 'children': [], 'synonymLabels': ['Communicating branch of internal laryngeal nerve with recurrent laryngeal nerve'], 'label': 'communicating branch of internal laryngeal nerve with recurrent laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53593': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53593', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53593', 'parent': 'http://purl.org/sig/ont/fma/fma6232', 'children': [], 'synonymLabels': ['Branch of auricular branch of vagus nerve to floor of external acoustic meatus'], 'label': 'branch of auricular branch of vagus nerve to floor of external acoustic meatus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53600': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53600', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53600', 'parent': 'http://purl.org/sig/ont/fma/fma53612', 'children': ['http://purl.org/sig/ont/fma/fma6245', 'http://purl.org/sig/ont/fma/fma6244'], 'synonymLabels': ['Cervical cardiac branch of vagus nerve'], 'label': 'cervical cardiac branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53601': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53601', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53601', 'parent': 'http://purl.org/sig/ont/fma/fma53612', 'children': [], 'synonymLabels': ['Thoracic cardiac branch of vagus nerve'], 'label': 'thoracic cardiac branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53612': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53612', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53612', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': ['http://purl.org/sig/ont/fma/fma6711', 'http://purl.org/sig/ont/fma/fma53600', 'http://purl.org/sig/ont/fma/fma53601'], 'synonymLabels': ['Cardiac branch of vagus nerve'], 'label': 'cardiac branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma53614': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma53614', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma53614', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to ceratocricoid'], 'label': 'branch of recurrent laryngeal nerve to ceratocricoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54400': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54400', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54400', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': ['http://purl.org/sig/ont/fma/fma54421', 'http://purl.org/sig/ont/fma/fma54417', 'http://purl.org/sig/ont/fma/fma54420', 'http://purl.org/sig/ont/fma/fma54419', 'http://purl.org/sig/ont/fma/fma54418'], 'synonymLabels': ['Meningeal branch of hypoglossal nerve'], 'label': 'meningeal branch of hypoglossal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54402': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54402', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54402', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': ['http://purl.org/sig/ont/fma/fma54451', 'http://purl.org/sig/ont/fma/fma54432'], 'synonymLabels': ['Descending branch of hypoglossal nerve'], 'label': 'descending branch of hypoglossal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54404': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54404', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54404', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to geniohyoid'], 'label': 'branch of hypoglossal nerve to geniohyoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54405': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54405', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54405', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to styloglossus'], 'label': 'branch of hypoglossal nerve to styloglossus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54406': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54406', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54406', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to hyoglossus'], 'label': 'branch of hypoglossal nerve to hyoglossus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54407': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54407', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54407', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to genioglossus'], 'label': 'branch of hypoglossal nerve to genioglossus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54408': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54408', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54408', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to palatopharyngeus'], 'label': 'branch of hypoglossal nerve to palatopharyngeus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54417': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54417', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54417', 'parent': 'http://purl.org/sig/ont/fma/fma54400', 'children': [], 'synonymLabels': ['Meningeal branch of hypoglossal nerve to diploe of occipital bone'], 'label': 'meningeal branch of hypoglossal nerve to diploe of occipital bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54418': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54418', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54418', 'parent': 'http://purl.org/sig/ont/fma/fma54400', 'children': [], 'synonymLabels': ['Meningeal branch of hypoglossal nerve to wall of occipital sinus'], 'label': 'meningeal branch of hypoglossal nerve to wall of occipital sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54419': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54419', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54419', 'parent': 'http://purl.org/sig/ont/fma/fma54400', 'children': [], 'synonymLabels': ['Meningeal branch of hypoglossal nerve to wall of inferior petrosal sinus'], 'label': 'meningeal branch of hypoglossal nerve to wall of inferior petrosal sinus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54420': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54420', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54420', 'parent': 'http://purl.org/sig/ont/fma/fma54400', 'children': [], 'synonymLabels': ['Meningeal branch of hypoglossal nerve to floor of posterior cranial fossa'], 'label': 'meningeal branch of hypoglossal nerve to floor of posterior cranial fossa'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54421': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54421', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54421', 'parent': 'http://purl.org/sig/ont/fma/fma54400', 'children': [], 'synonymLabels': ['Meningeal branch of hypoglossal nerve to anterior wall of posterior cranial fossa'], 'label': 'meningeal branch of hypoglossal nerve to anterior wall of posterior cranial fossa'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54432': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54432', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54432', 'parent': 'http://purl.org/sig/ont/fma/fma54402', 'children': [], 'synonymLabels': ['Nerve to superior belly of omohyoid'], 'label': 'nerve to superior belly of omohyoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54451', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54451', 'parent': 'http://purl.org/sig/ont/fma/fma54402', 'children': [], 'synonymLabels': ['Branch of hypoglossal nerve to ansa cervicalis'], 'label': 'branch of hypoglossal nerve to ansa cervicalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma54682': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma54682', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma54682', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': ['Pterygoid process'], 'label': 'pterygoid process of sphenoid bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma55174': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma55174', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma55174', 'parent': 'http://purl.org/sig/ont/fma/fma6873', 'children': [], 'synonymLabels': ['Superior branch of transverse cervical nerve'], 'label': 'superior branch of transverse cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma55175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma55175', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma55175', 'parent': 'http://purl.org/sig/ont/fma/fma6873', 'children': [], 'synonymLabels': ['Inferior branch of transverse cervical nerve'], 'label': 'inferior branch of transverse cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma55221': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma55221', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma55221', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'children': ['https://purl.org/ccf/ASCTB-TEMP_tonsil-t-cell-zone'], 'synonymLabels': ['Diffuse lymphoid tissue'], 'label': 'diffuse lymphoid tissue'}),\n",
      "  'http://purl.org/sig/ont/fma/fma57131': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma57131', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma57131', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': ['Orbital surface of frontal bone'], 'label': 'orbital surface of frontal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma57674': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma57674', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma57674', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002396', 'children': [], 'synonymLabels': ['Ala of vomer'], 'label': 'ala of vomer'}),\n",
      "  'http://purl.org/sig/ont/fma/fma57703': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma57703', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma57703', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['Nasal surface of maxilla'], 'label': 'nasal surface of maxilla'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5830': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5830', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5830', 'parent': 'http://purl.org/sig/ont/fma/fma5832', 'children': [], 'synonymLabels': ['Right subclavian lymphatic trunk'], 'label': 'right subclavian lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5831': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5831', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5831', 'parent': 'http://purl.org/sig/ont/fma/fma5832', 'children': [], 'synonymLabels': ['Right bronchomediastinal lymphatic trunk'], 'label': 'right bronchomediastinal lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5832': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5832', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5832', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004536', 'children': ['https://purl.org/ccf/ASCTB-TEMP_right-anterior-mediastinal-lymph-node', 'http://purl.org/sig/ont/fma/fma5831', 'http://purl.org/sig/ont/fma/fma12251', 'http://purl.org/sig/ont/fma/fma5830', 'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node-2'], 'synonymLabels': ['Right lymphatic duct'], 'label': 'right lymphatic duct'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5834', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5834', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Left bronchomediastinal lymphatic trunk'], 'label': 'left bronchomediastinal lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5840', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005435', 'children': ['http://purl.org/sig/ont/fma/fma66175', 'http://purl.org/sig/ont/fma/fma66172', 'http://purl.org/sig/ont/fma/fma66174'], 'synonymLabels': ['Right lumbar lymphatic trunk'], 'label': 'right lumbar lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5841': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5841', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5841', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005435', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-lateral-aortic-lymph-node', 'http://purl.org/sig/ont/fma/fma323951', 'https://purl.org/ccf/ASCTB-TEMP_right-lateral-aortic-lymph-node'], 'synonymLabels': ['Left lumbar lymphatic trunk'], 'label': 'left lumbar lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5842': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5842', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5842', 'parent': 'http://purl.org/sig/ont/fma/fma12765', 'children': [], 'synonymLabels': ['Intestinal lymphatic trunk'], 'label': 'intestinal lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5863': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5863', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5863', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001780', 'children': [], 'synonymLabels': ['Coccygeal nerve'], 'label': 'coccygeal spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma59470': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma59470', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma59470', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': ['Lingula of mandible'], 'label': 'lingula of mandible'}),\n",
      "  'http://purl.org/sig/ont/fma/fma59495': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma59495', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma59495', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001685', 'children': [], 'synonymLabels': ['Body of hyoid bone'], 'label': 'body of hyoid bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma5955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma5955', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma5955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Left paratracheal lymph node'], 'label': 'left paratracheal lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6009', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6009', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000044', 'children': [], 'synonymLabels': ['Coccygeal spinal ganglion'], 'label': 'coccygeal dorsal root ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6037': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6037', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6037', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['First thoracic nerve'], 'label': 'first thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6142': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6142', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6142', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of third thoracic nerve'], 'label': 'dorsal ramus of third thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma61437': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma61437', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma61437', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010132', 'children': [], 'synonymLabels': ['Retroduodenal artery'], 'label': 'retroduodenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6167': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6167', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6167', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Twelfth thoracic nerve'], 'label': 'twelfth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6169': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6169', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6169', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Second thoracic nerve'], 'label': 'second thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6171', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6171', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Third thoracic nerve'], 'label': 'third thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6172': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6172', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6172', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009624', 'children': [], 'synonymLabels': ['First lumbar nerve'], 'label': 'first lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6176': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6176', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6176', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009624', 'children': [], 'synonymLabels': ['Second lumbar nerve'], 'label': 'second lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma61917': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma61917', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma61917', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': ['http://purl.org/sig/ont/fma/fma78594', 'http://purl.org/sig/ont/fma/fma65280'], 'synonymLabels': ['Subclavian nerve plexus'], 'label': 'subclavian nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6200', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6200', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Communicating branch of phrenic nerve to internal thoracic plexus'], 'label': 'communicating branch of phrenic nerve to internal thoracic plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6201': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6201', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6201', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Pericardial branch of phrenic nerve'], 'label': 'pericardial branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6202', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6202', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Branch of phrenic nerve to mediastinal pleura'], 'label': 'branch of phrenic nerve to mediastinal pleura'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6203', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6203', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Branch of phrenic nerve to diaphragmatic pleura'], 'label': 'branch of phrenic nerve to diaphragmatic pleura'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6204': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6204', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6204', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Diaphragmatic branch of phrenic nerve'], 'label': 'diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6205': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6205', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6205', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Anterior diaphragmatic branch of phrenic nerve'], 'label': 'anterior diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6206': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6206', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6206', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Anterolateral diaphragmatic branch of phrenic nerve'], 'label': 'anterolateral diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6207': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6207', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6207', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Posterior diaphragmatic branch of phrenic nerve'], 'label': 'posterior diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6208': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6208', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6208', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Posterior ramus of posterior diaphragmatic branch of phrenic nerve'], 'label': 'posterior ramus of posterior diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6209': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6209', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6209', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Posterolateral ramus of posterior diaphragmatic branch of phrenic nerve'], 'label': 'posterolateral ramus of posterior diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6210': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6210', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6210', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001884', 'children': [], 'synonymLabels': ['Peritoneal branch of diaphragmatic branch of phrenic nerve'], 'label': 'peritoneal branch of diaphragmatic branch of phrenic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6231', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6231', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Meningeal branch of vagus nerve'], 'label': 'meningeal branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6232', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6232', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': ['http://purl.org/sig/ont/fma/fma53593', 'http://purl.org/sig/ont/fma/fma6695', 'http://purl.org/sig/ont/fma/fma6691', 'http://purl.org/sig/ont/fma/fma6692', 'http://purl.org/sig/ont/fma/fma6694'], 'synonymLabels': ['Auricular branch of vagus nerve'], 'label': 'auricular branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6233': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6233', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6233', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Communicating branch of vagus nerve with glossopharyngeal nerve'], 'label': 'communicating branch of vagus nerve with glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6234', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6234', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': ['http://purl.org/sig/ont/fma/fma6235', 'http://purl.org/sig/ont/fma/fma6236'], 'synonymLabels': ['Pharyngeal branch of vagus nerve'], 'label': 'pharyngeal branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6235': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6235', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6235', 'parent': 'http://purl.org/sig/ont/fma/fma6234', 'children': [], 'synonymLabels': ['Lingual branch of vagus nerve'], 'label': 'lingual branch of pharyngeal branch of vagus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6236': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6236', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6236', 'parent': 'http://purl.org/sig/ont/fma/fma6234', 'children': [], 'synonymLabels': ['Pharyngeal branch of vagus nerve to pharyngeal nerve plexus'], 'label': 'pharyngeal branch of vagus nerve to pharyngeal nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6237': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6237', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6237', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Branch of vagus nerve to carotid body'], 'label': 'vagal branch to carotid body'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6239', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6239', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Superior laryngeal nerve'], 'label': 'superior laryngeal branch of vagus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6240', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6240', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011326', 'children': ['http://purl.org/sig/ont/fma/fma6242', 'http://purl.org/sig/ont/fma/fma6241'], 'synonymLabels': ['Internal laryngeal nerve'], 'label': 'internal branch of superior laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6241': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6241', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6241', 'parent': 'http://purl.org/sig/ont/fma/fma6240', 'children': ['http://purl.org/sig/ont/fma/fma6702', 'http://purl.org/sig/ont/fma/fma6704', 'http://purl.org/sig/ont/fma/fma6697', 'http://purl.org/sig/ont/fma/fma6703'], 'synonymLabels': ['Upper branch of internal laryngeal nerve'], 'label': 'upper branch of internal laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6242', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6242', 'parent': 'http://purl.org/sig/ont/fma/fma6240', 'children': ['http://purl.org/sig/ont/fma/fma53544', 'http://purl.org/sig/ont/fma/fma6699', 'http://purl.org/sig/ont/fma/fma53543', 'http://purl.org/sig/ont/fma/fma6700'], 'synonymLabels': ['Lower branch of internal laryngeal nerve'], 'label': 'lower branch of internal laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6243', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6243', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011326', 'children': ['http://purl.org/sig/ont/fma/fma6705', 'http://purl.org/sig/ont/fma/fma6707', 'http://purl.org/sig/ont/fma/fma6706', 'http://purl.org/sig/ont/fma/fma6709', 'http://purl.org/sig/ont/fma/fma6708'], 'synonymLabels': ['External laryngeal nerve'], 'label': 'external branch of superior laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6244': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6244', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6244', 'parent': 'http://purl.org/sig/ont/fma/fma53600', 'children': [], 'synonymLabels': ['Superior cervical cardiac branch of vagus nerve'], 'label': 'superior cervical cardiac branch of vagus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6245': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6245', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6245', 'parent': 'http://purl.org/sig/ont/fma/fma53600', 'children': [], 'synonymLabels': ['Inferior cervical cardiac branch of vagus nerve'], 'label': 'inferior cervical cardiac branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6246', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6246', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': ['http://purl.org/sig/ont/fma/fma6251', 'http://purl.org/sig/ont/fma/fma6250', 'http://purl.org/sig/ont/fma/fma53526', 'http://purl.org/sig/ont/fma/fma6248', 'http://purl.org/sig/ont/fma/fma6710', 'http://purl.org/sig/ont/fma/fma6249'], 'synonymLabels': ['Recurrent laryngeal nerve'], 'label': 'recurrent laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma62467': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma62467', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma62467', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Branch of musculocutaneous nerve to coracobrachialis'], 'label': 'branch of musculocutaneous nerve to coracobrachialis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma62468': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma62468', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma62468', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Branch of musculocutaneous nerve to biceps brachii'], 'label': 'branch of musculocutaneous nerve to biceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6247': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6247', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6247', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Bronchial branch of vagus nerve'], 'label': 'bronchial branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6248': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6248', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6248', 'parent': 'http://purl.org/sig/ont/fma/fma6246', 'children': [], 'synonymLabels': ['Esophageal branch of recurrent laryngeal nerve'], 'label': 'esophageal branch of recurrent laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6249', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6249', 'parent': 'http://purl.org/sig/ont/fma/fma6246', 'children': [], 'synonymLabels': ['Tracheal branch of recurrent laryngeal nerve'], 'label': 'tracheal branch of recurrent laryngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6250', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6250', 'parent': 'http://purl.org/sig/ont/fma/fma6246', 'children': ['http://purl.org/sig/ont/fma/fma53614', 'http://purl.org/sig/ont/fma/fma53524', 'http://purl.org/sig/ont/fma/fma6253', 'http://purl.org/sig/ont/fma/fma6255', 'http://purl.org/sig/ont/fma/fma6252', 'http://purl.org/sig/ont/fma/fma6256', 'http://purl.org/sig/ont/fma/fma6254', 'http://purl.org/sig/ont/fma/fma6257'], 'synonymLabels': ['Branch of recurrent laryngeal nerve to muscle of larynx'], 'label': 'branch of recurrent laryngeal nerve to muscle of larynx'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6251': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6251', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6251', 'parent': 'http://purl.org/sig/ont/fma/fma6246', 'children': [], 'synonymLabels': ['Branch of recurrent laryngeal nerve to mucosa of larynx'], 'label': 'branch of recurrent laryngeal nerve to mucosa of larynx'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6252', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6252', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to posterior crico-arytenoid'], 'label': 'branch of recurrent laryngeal nerve to posterior crico-arytenoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6253', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6253', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to lateral crico-arytenoid'], 'label': 'branch of recurrent laryngeal nerve to lateral crico-arytenoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6254', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6254', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to transverse arytenoid'], 'label': 'branch of recurrent laryngeal nerve to transverse arytenoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6255', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6255', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to oblique arytenoid'], 'label': 'branch of recurrent laryngeal nerve to oblique arytenoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6256': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6256', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6256', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to thyroarytenoid'], 'label': 'branch of recurrent laryngeal nerve to thyroarytenoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6257': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6257', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6257', 'parent': 'http://purl.org/sig/ont/fma/fma6250', 'children': [], 'synonymLabels': ['Nerve to vocalis'], 'label': 'branch of recurrent laryngeal nerve to vocalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6290': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6290', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6290', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Fourth thoracic nerve'], 'label': 'fourth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6293', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6293', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Fifth thoracic nerve'], 'label': 'fifth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6296': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6296', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6296', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Sixth thoracic nerve'], 'label': 'sixth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6299': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6299', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6299', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Seventh thoracic nerve'], 'label': 'seventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6302': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6302', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6302', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Eighth thoracic nerve'], 'label': 'eighth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6306': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6306', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6306', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Ninth thoracic nerve'], 'label': 'ninth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6309', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6309', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Tenth thoracic nerve'], 'label': 'tenth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6312', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6312', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003726', 'children': [], 'synonymLabels': ['Eleventh thoracic nerve'], 'label': 'eleventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6414', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6414', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009624', 'children': [], 'synonymLabels': ['Third lumbar nerve'], 'label': 'third lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6415': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6415', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6415', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009624', 'children': [], 'synonymLabels': ['Fourth lumbar nerve'], 'label': 'fourth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6416': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6416', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6416', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009624', 'children': [], 'synonymLabels': ['Fifth lumbar nerve'], 'label': 'fifth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6423': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6423', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6423', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009625', 'children': [], 'synonymLabels': ['First sacral nerve'], 'label': 'first sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6424': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6424', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6424', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009625', 'children': [], 'synonymLabels': ['Second sacral nerve'], 'label': 'second sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6425': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6425', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6425', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009625', 'children': [], 'synonymLabels': ['Third sacral nerve'], 'label': 'third sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6426': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6426', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6426', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009625', 'children': [], 'synonymLabels': ['Fourth sacral nerve'], 'label': 'fourth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6427': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6427', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6427', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009625', 'children': [], 'synonymLabels': ['Fifth sacral nerve'], 'label': 'fifth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6440': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6440', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6440', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['First cervical nerve'], 'label': 'first cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6443': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6443', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6443', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Second cervical nerve'], 'label': 'second cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6444': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6444', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6444', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Third cervical nerve'], 'label': 'third cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6445': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6445', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6445', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Fourth cervical nerve'], 'label': 'fourth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6446': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6446', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6446', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Fifth cervical nerve'], 'label': 'fifth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6447': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6447', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6447', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Sixth cervical nerve'], 'label': 'sixth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6448': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6448', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6448', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Seventh cervical nerve'], 'label': 'seventh cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6449': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6449', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6449', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000962', 'children': [], 'synonymLabels': ['Eighth cervical nerve'], 'label': 'eighth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6472': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6472', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6472', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001807', 'children': ['http://purl.org/sig/ont/fma/fma6540', 'http://purl.org/sig/ont/fma/fma6543', 'http://purl.org/sig/ont/fma/fma6541', 'http://purl.org/sig/ont/fma/fma6542'], 'synonymLabels': ['Lumbar ganglion'], 'label': 'lumbar ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6473': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6473', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6473', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001807', 'children': ['http://purl.org/sig/ont/fma/fma6552', 'http://purl.org/sig/ont/fma/fma6555', 'http://purl.org/sig/ont/fma/fma6553', 'http://purl.org/sig/ont/fma/fma6554'], 'synonymLabels': ['Sacral ganglion'], 'label': 'sacral ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6475': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6475', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6475', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Second thoracic ganglion'], 'label': 'second thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6476': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6476', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6476', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Third thoracic ganglion'], 'label': 'third thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6477', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6477', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Fourth thoracic ganglion'], 'label': 'fourth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6478': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6478', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6478', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Fifth thoracic ganglion'], 'label': 'fifth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6479': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6479', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6479', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Sixth thoracic ganglion'], 'label': 'sixth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6480': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6480', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6480', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Seventh thoracic ganglion'], 'label': 'seventh thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6481': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6481', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6481', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Eighth thoracic ganglion'], 'label': 'eighth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6482': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6482', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6482', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Ninth thoracic ganglion'], 'label': 'ninth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6483': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6483', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6483', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Tenth thoracic ganglion'], 'label': 'tenth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6484': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6484', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6484', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Eleventh thoracic ganglion'], 'label': 'eleventh thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6485': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6485', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6485', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000961', 'children': [], 'synonymLabels': ['Twelfth thoracic ganglion'], 'label': 'twelfth thoracic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65243', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65243', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002211', 'children': [], 'synonymLabels': ['Medial root of median nerve'], 'label': 'median root of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65244': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65244', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65244', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002211', 'children': [], 'synonymLabels': ['Lateral root of median nerve'], 'label': 'lateral root of median nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65246', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65246', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': [], 'synonymLabels': ['Medial cutaneous nerve of arm'], 'label': 'medial cutaneous nerve of arm'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65275': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65275', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65275', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81373', 'http://purl.org/sig/ont/fma/fma81374', 'http://purl.org/sig/ont/fma/fma81375'], 'synonymLabels': ['Long thoracic nerve'], 'label': 'long thoracic nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65279', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65279', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': [], 'synonymLabels': ['Dorsal scapular nerve'], 'label': 'dorsal scapular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65280': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65280', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65280', 'parent': 'http://purl.org/sig/ont/fma/fma61917', 'children': [], 'synonymLabels': ['Subclavian nerve'], 'label': 'subclavian nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65290': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65290', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65290', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81258', 'http://purl.org/sig/ont/fma/fma81355', 'http://purl.org/sig/ont/fma/fma81356', 'http://purl.org/sig/ont/fma/fma81357'], 'synonymLabels': ['Thoracodorsal nerve'], 'label': 'thoracodorsal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65293', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65293', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81260', 'http://purl.org/sig/ont/fma/fma81263', 'http://purl.org/sig/ont/fma/fma81333'], 'synonymLabels': ['Medial pectoral nerve'], 'label': 'medial pectoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65296': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65296', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65296', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81246'], 'synonymLabels': ['Lateral pectoral nerve'], 'label': 'lateral pectoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65300', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65300', 'parent': 'http://purl.org/sig/ont/fma/fma81286', 'children': [], 'synonymLabels': ['Deltoid branch of posterior branch of axillary nerve'], 'label': 'deltoid branch of posterior branch of axillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65301': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65301', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65301', 'parent': 'http://purl.org/sig/ont/fma/fma81286', 'children': [], 'synonymLabels': ['Nerve to teres minor'], 'label': 'branch of posterior branch of axillary nerve to teres minor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65303', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65303', 'parent': 'http://purl.org/sig/ont/fma/fma81286', 'children': [], 'synonymLabels': ['Superior lateral cutaneous nerve of arm'], 'label': 'superior lateral cutaneous nerve of arm'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65304': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65304', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65304', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81278', 'http://purl.org/sig/ont/fma/fma81281'], 'synonymLabels': ['Superior subscapular nerve'], 'label': 'superior subscapular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65307': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65307', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65307', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001814', 'children': ['http://purl.org/sig/ont/fma/fma81300', 'http://purl.org/sig/ont/fma/fma81297'], 'synonymLabels': ['Inferior subscapular nerve'], 'label': 'inferior subscapular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65311': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65311', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65311', 'parent': 'http://purl.org/sig/ont/fma/fma39079', 'children': [], 'synonymLabels': ['Anterior branch of medial cutaneous nerve of forearm'], 'label': 'anterior branch of medial cutaneous nerve of forearm'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65312', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65312', 'parent': 'http://purl.org/sig/ont/fma/fma39079', 'children': [], 'synonymLabels': ['Posterior branch of medial cutaneous nerve of forearm'], 'label': 'posterior branch of medial cutaneous nerve of forearm'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65329', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Branch of posterior muscular branch of radial nerve to medial head of triceps brachii'], 'label': 'posterior muscular branch of radial nerve to medial head of triceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65330', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65330', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Branch of posterior muscular branch of radial nerve to lateral head of triceps brachii'], 'label': 'posterior muscular branch of radial nerve to lateral head of triceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65333': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65333', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65333', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Lateral muscular branch of radial nerve to brachialis'], 'label': 'lateral muscular branch of radial nerve to brachialis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65334': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65334', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65334', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Nerve to brachioradialis'], 'label': 'lateral muscular branch of radial nerve to brachioradialis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65351': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65351', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65351', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': [], 'synonymLabels': ['Branch of ulnar nerve to flexor digitorum profundus'], 'label': 'branch of ulnar nerve to flexor digitorum profundus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6540': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6540', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6540', 'parent': 'http://purl.org/sig/ont/fma/fma6472', 'children': [], 'synonymLabels': ['First lumbar ganglion'], 'label': 'first lumbar ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6541': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6541', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6541', 'parent': 'http://purl.org/sig/ont/fma/fma6472', 'children': [], 'synonymLabels': ['Second lumbar ganglion'], 'label': 'second lumbar ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65414', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65414', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003725', 'children': ['http://purl.org/sig/ont/fma/fma78651', 'http://purl.org/sig/ont/fma/fma78654', 'http://purl.org/sig/ont/fma/fma78648'], 'synonymLabels': ['Supraclavicular nerve'], 'label': 'supraclavicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6542': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6542', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6542', 'parent': 'http://purl.org/sig/ont/fma/fma6472', 'children': [], 'synonymLabels': ['Third lumbar ganglion'], 'label': 'third lumbar ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6543', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6543', 'parent': 'http://purl.org/sig/ont/fma/fma6472', 'children': [], 'synonymLabels': ['Fourth lumbar ganglion'], 'label': 'fourth lumbar ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65514': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65514', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65514', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': ['http://purl.org/sig/ont/fma/fma6715', 'http://purl.org/sig/ont/fma/fma6716'], 'synonymLabels': ['Esophageal branch of vagal trunk'], 'label': 'esophageal branch of vagal trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65515': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65515', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65515', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Pulmonary branch of vagus nerve'], 'label': 'pulmonary branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6552': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6552', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6552', 'parent': 'http://purl.org/sig/ont/fma/fma6473', 'children': [], 'synonymLabels': ['First sacral ganglion'], 'label': 'first sacral ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6553': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6553', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6553', 'parent': 'http://purl.org/sig/ont/fma/fma6473', 'children': [], 'synonymLabels': ['Second sacral ganglion'], 'label': 'second sacral ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6554': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6554', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6554', 'parent': 'http://purl.org/sig/ont/fma/fma6473', 'children': [], 'synonymLabels': ['Third sacral ganglion'], 'label': 'third sacral ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6555': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6555', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6555', 'parent': 'http://purl.org/sig/ont/fma/fma6473', 'children': [], 'synonymLabels': ['Fourth sacral ganglion'], 'label': 'fourth sacral ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65567': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65567', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65567', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Subcostal nerve'], 'label': 'ventral ramus of twelfth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65638', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of first cervical nerve'], 'label': 'meningeal branch of first cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65641': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65641', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65641', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of second cervical nerve'], 'label': 'meningeal branch of second cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65644', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of third cervical nerve'], 'label': 'meningeal branch of third cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fourth cervical nerve'], 'label': 'meningeal branch of fourth cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65650': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65650', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65650', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of fifth cervical nerve'], 'label': 'meningeal branch of fifth cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65653': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65653', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65653', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of sixth cervical nerve'], 'label': 'meningeal branch of sixth cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65656': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65656', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65656', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of seventh cervical nerve'], 'label': 'meningeal branch of seventh cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65659': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65659', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65659', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017641', 'children': [], 'synonymLabels': ['Meningeal branch of eighth cervical nerve'], 'label': 'meningeal branch of eighth cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6567': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6567', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6567', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001807', 'children': [], 'synonymLabels': ['Coccygeal ganglion'], 'label': 'coccygeal ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6591': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6591', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6591', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': [], 'label': 'gray communicating ramus of third lumbar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65910': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65910', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65910', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of first lumbar nerve'], 'label': 'gray communicating ramus of first lumbar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65911': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65911', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65911', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of second lumbar nerve'], 'label': 'gray communicating ramus of second lumbar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65913': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65913', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65913', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of fourth lumbar nerve'], 'label': 'gray communicating ramus of fourth lumbar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65914': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65914', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65914', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of fifth lumbar nerve'], 'label': 'gray communicating ramus of fifth lumbar nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65986', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65986', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of first sacral nerve'], 'label': 'gray communicating ramus of first sacral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65987': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65987', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65987', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of second sacral nerve'], 'label': 'gray communicating ramus of second sacral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65988': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65988', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65988', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of third sacral nerve'], 'label': 'gray communicating ramus of third sacral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65989': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65989', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65989', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of fourth sacral nerve'], 'label': 'gray communicating ramus of fourth sacral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma65990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma65990', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma65990', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0017642', 'children': [], 'synonymLabels': ['Gray communicating ramus of fifth sacral nerve'], 'label': 'gray communicating ramus of fifth sacral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66048', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66048', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Branch of sacral nerve plexus to levator ani'], 'label': 'branch of sacral nerve plexus to levator ani'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66049', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66049', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Branch of sacral nerve plexus to coccygeus'], 'label': 'branch of sacral nerve plexus to coccygeus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66052': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66052', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66052', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Branch of sacral nerve plexus to external anal sphincter'], 'label': 'branch of sacral nerve plexus to external anal sphincter'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66061': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66061', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66061', 'parent': 'http://purl.org/sig/ont/fma/fma45337', 'children': [], 'synonymLabels': ['Branch of posterior femoral cutaneous nerve to back of thigh and leg'], 'label': 'branch of posterior femoral cutaneous nerve to back of thigh and leg'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66172': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66172', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66172', 'parent': 'http://purl.org/sig/ont/fma/fma5840', 'children': [], 'synonymLabels': ['Lateral caval lymph node'], 'label': 'laterocaval lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66174': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66174', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66174', 'parent': 'http://purl.org/sig/ont/fma/fma5840', 'children': [], 'synonymLabels': ['Retrocaval lymph node'], 'label': 'retrocaval lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66175', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66175', 'parent': 'http://purl.org/sig/ont/fma/fma5840', 'children': [], 'synonymLabels': ['Intermediate lumbar lymph node'], 'label': 'interaortocaval lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66241': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66241', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66241', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006198', 'children': [], 'synonymLabels': ['First posterior intercostal artery'], 'label': 'posterior intercostal artery 1'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6638': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6638', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6638', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['Ovarian nerve plexus'], 'label': 'ovarian nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma66421': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma66421', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma66421', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001540', 'http://purl.obolibrary.org/obo/UBERON_0001538'], 'synonymLabels': ['Trunk of posterior tibial artery'], 'label': 'tibial-peroneal trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6646', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6646', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006690', 'children': [], 'synonymLabels': ['Vesical nerve plexus'], 'label': 'vesical plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6647', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['Prostatic nerve plexus'], 'label': 'prostatic nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6648', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6648', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['Uterovaginal nerve plexus'], 'label': 'uterovaginal nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6670': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6670', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6670', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Renal branch of vagus nerve'], 'label': 'renal branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6691': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6691', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6691', 'parent': 'http://purl.org/sig/ont/fma/fma6232', 'children': [], 'synonymLabels': ['Communicating branch of auricular branch of vagus nerve with facial nerve'], 'label': 'communicating branch of auricular branch of vagus nerve with facial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6692', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6692', 'parent': 'http://purl.org/sig/ont/fma/fma6232', 'children': [], 'synonymLabels': ['Communicating branch of auricular branch of vagus nerve with posterior auricular nerve'], 'label': 'communicating branch of auricular branch of vagus nerve with posterior auricular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6694': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6694', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6694', 'parent': 'http://purl.org/sig/ont/fma/fma6232', 'children': [], 'synonymLabels': ['Branch of auricular branch of vagus nerve to posterior wall of external acoustic meatus'], 'label': 'vagal branch to posterior wall of external acoustic meatus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6695': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6695', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6695', 'parent': 'http://purl.org/sig/ont/fma/fma6232', 'children': [], 'synonymLabels': ['Vagal branch to tympanic membrane'], 'label': 'branch of auricular branch of vagus nerve to tympanic membrane'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6697': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6697', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6697', 'parent': 'http://purl.org/sig/ont/fma/fma6241', 'children': [], 'synonymLabels': ['Upper branch of internal laryngeal nerve to mucosa of pharynx'], 'label': 'upper branch of internal laryngeal nerve to mucosa of pharynx'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6699': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6699', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6699', 'parent': 'http://purl.org/sig/ont/fma/fma6242', 'children': [], 'synonymLabels': ['Lower branch of internal laryngeal nerve to aryepiglottic fold'], 'label': 'lower branch of internal laryngeal nerve to aryepiglottic fold'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6700': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6700', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6700', 'parent': 'http://purl.org/sig/ont/fma/fma6242', 'children': [], 'synonymLabels': ['Lower branch of internal laryngeal nerve to mucosa of arytenoid cartilage'], 'label': 'lower branch of internal laryngeal nerve to mucosa of arytenoid cartilage'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6702': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6702', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6702', 'parent': 'http://purl.org/sig/ont/fma/fma6241', 'children': [], 'synonymLabels': ['Upper branch of internal laryngeal nerve to epiglottis'], 'label': 'upper branch of internal laryngeal nerve to epiglottis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6703': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6703', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6703', 'parent': 'http://purl.org/sig/ont/fma/fma6241', 'children': [], 'synonymLabels': ['Upper branch of internal laryngeal nerve to epiglottic vallecula'], 'label': 'upper branch of internal laryngeal nerve to vallecula of epiglottis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6704': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6704', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6704', 'parent': 'http://purl.org/sig/ont/fma/fma6241', 'children': [], 'synonymLabels': ['Upper branch of internal laryngeal nerve to laryngeal vestibule'], 'label': 'upper branch of internal laryngeal nerve to laryngeal vestibule'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6705': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6705', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6705', 'parent': 'http://purl.org/sig/ont/fma/fma6243', 'children': [], 'synonymLabels': ['Branch of external laryngeal nerve to cricothyroid muscle'], 'label': 'branch of external laryngeal nerve to cricothyroid muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6706': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6706', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6706', 'parent': 'http://purl.org/sig/ont/fma/fma6243', 'children': [], 'synonymLabels': ['Branch of external laryngeal nerve to pharyngeal nerve plexus'], 'label': 'branch of external laryngeal nerve to pharyngeal nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6707': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6707', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6707', 'parent': 'http://purl.org/sig/ont/fma/fma6243', 'children': [], 'synonymLabels': ['Branch of external laryngeal nerve to inferior pharyngeal constrictor'], 'label': 'branch of external laryngeal nerve to inferior pharyngeal constrictor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6708', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6708', 'parent': 'http://purl.org/sig/ont/fma/fma6243', 'children': [], 'synonymLabels': ['Communicating branch of external laryngeal nerve with superior cardiac nerve'], 'label': 'communicating branch of external laryngeal nerve with superior cardiac nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6709': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6709', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6709', 'parent': 'http://purl.org/sig/ont/fma/fma6243', 'children': [], 'synonymLabels': ['External laryngeal branch to superior cervical sympathetic ganglion'], 'label': 'branch of external laryngeal nerve to superior cervical sympathetic ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6710': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6710', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6710', 'parent': 'http://purl.org/sig/ont/fma/fma6246', 'children': [], 'synonymLabels': ['Extra-laryngeal branch of recurrent laryngeal nerve to larynx'], 'label': 'extra-laryngeal branch of recurrent laryngeal nerve to larynx'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6711', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6711', 'parent': 'http://purl.org/sig/ont/fma/fma53612', 'children': [], 'synonymLabels': ['Cardiac branch of right vagus to deep cardiac plexus'], 'label': 'cardiac branch of right vagus to deep cardiac plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6715', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6715', 'parent': 'http://purl.org/sig/ont/fma/fma65514', 'children': [], 'synonymLabels': ['Esophageal branch of anterior vagal trunk'], 'label': 'esophageal branch of anterior vagal trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6716', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6716', 'parent': 'http://purl.org/sig/ont/fma/fma65514', 'children': [], 'synonymLabels': ['Esophageal branch of posterior vagal trunk'], 'label': 'esophageal branch of posterior vagal trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6720': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6720', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6720', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001785', 'children': ['http://purl.org/sig/ont/fma/fma77544', 'http://purl.org/sig/ont/fma/fma77543', 'http://purl.org/sig/ont/fma/fma82584', 'http://purl.org/sig/ont/fma/fma82581', 'http://purl.org/sig/ont/fma/fma77541'], 'synonymLabels': ['Spinal accessory nerve'], 'label': 'spinal accessory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma67532': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma67532', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma67532', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001810', 'children': [], 'synonymLabels': ['External carotid nerve plexus'], 'label': 'external carotid nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma67549': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma67549', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma67549', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002024', 'children': [], 'synonymLabels': ['Deep petrosal nerve'], 'label': 'deep petrosal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma67952': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma67952', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma67952', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Branch of musculocutaneous nerve to brachialis'], 'label': 'branch of musculocutaneous nerve to brachialis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma67953': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma67953', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma67953', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Branch of musculocutaneous nerve to humerus'], 'label': 'branch of musculocutaneous nerve to humerus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma67977': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma67977', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma67977', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001106', 'children': ['http://purl.org/sig/ont/fma/fma22954'], 'synonymLabels': ['Dorsal venous network of hand'], 'label': 'dorsal venous network of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma68069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma68069', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma68069', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': ['Right inferior phrenic vein'], 'label': 'right inferior phrenic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma68070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma68070', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma68070', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001142', 'children': [], 'synonymLabels': ['Left inferior phrenic vein'], 'label': 'left inferior phrenic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma68193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma68193', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma68193', 'parent': 'http://purl.org/sig/ont/fma/fma8618', 'children': [], 'synonymLabels': ['Medial segmental artery'], 'label': 'medial segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma68194': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma68194', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma68194', 'parent': 'http://purl.org/sig/ont/fma/fma8618', 'children': [], 'synonymLabels': ['Lateral segmental artery'], 'label': 'lateral segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6871': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6871', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6871', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003725', 'children': ['http://purl.org/sig/ont/fma/fma6878', 'http://purl.org/sig/ont/fma/fma12208', 'http://purl.org/sig/ont/fma/fma6874', 'http://purl.org/sig/ont/fma/fma6875', 'http://purl.org/sig/ont/fma/fma6879', 'http://purl.org/sig/ont/fma/fma6877'], 'synonymLabels': ['Lesser occipital nerve'], 'label': 'lesser occipital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6873': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6873', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6873', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003725', 'children': ['http://purl.org/sig/ont/fma/fma55175', 'http://purl.org/sig/ont/fma/fma55174'], 'synonymLabels': ['Transverse cervical nerve'], 'label': 'transverse cervical nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6874': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6874', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6874', 'parent': 'http://purl.org/sig/ont/fma/fma6871', 'children': [], 'synonymLabels': ['Branch to great auricular nerve'], 'label': 'branch to great auricular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6875': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6875', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6875', 'parent': 'http://purl.org/sig/ont/fma/fma6871', 'children': [], 'synonymLabels': ['Branch to greater occipital nerve'], 'label': 'branch to greater occipital nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6877': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6877', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6877', 'parent': 'http://purl.org/sig/ont/fma/fma6871', 'children': [], 'synonymLabels': ['Cutaneous branch to scalp behind auricle'], 'label': 'cutaneous branch to scalp behind auricle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6878': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6878', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6878', 'parent': 'http://purl.org/sig/ont/fma/fma6871', 'children': [], 'synonymLabels': ['Auricular branch to skin of upper third of medial auricle'], 'label': 'auricular branch to skin of upper third of medial auricle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6879': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6879', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6879', 'parent': 'http://purl.org/sig/ont/fma/fma6871', 'children': [], 'synonymLabels': ['Branch to posterior branch of great auricular nerve'], 'label': 'branch to posterior branch of great auricular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6880': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6880', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6880', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008833', 'children': [], 'synonymLabels': ['Anterior branch of great auricular nerve'], 'label': 'greater auricular nerve anterior branch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6881': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6881', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6881', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008833', 'children': [], 'synonymLabels': ['Posterior branch of great auricular nerve'], 'label': 'greater auricular nerve posterior branch'}),\n",
      "  'http://purl.org/sig/ont/fma/fma68847': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma68847', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma68847', 'parent': 'http://purl.org/sig/ont/fma/fma8618', 'children': ['http://purl.org/sig/ont/fma/fma8630', 'http://purl.org/sig/ont/fma/fma8631', 'http://purl.org/sig/ont/fma/fma8628', 'http://purl.org/sig/ont/fma/fma8632'], 'synonymLabels': ['Trunk of right basal segmental artery'], 'label': 'basal segmental arterial trunk of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma68848': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma68848', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma68848', 'parent': 'http://purl.org/sig/ont/fma/fma9284', 'children': ['http://purl.org/sig/ont/fma/fma8645', 'http://purl.org/sig/ont/fma/fma8646', 'http://purl.org/sig/ont/fma/fma8644', 'http://purl.org/sig/ont/fma/fma8647'], 'synonymLabels': ['Trunk of left basal segmental artery'], 'label': 'basal segmental arterial trunk of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69329', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69329', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002345', 'children': [], 'synonymLabels': ['Pericardial artery'], 'label': 'pericardial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma6942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma6942', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma6942', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001021', 'children': [], 'synonymLabels': ['Interganglionic branch of inferior cervical ganglion to middle cervical ganglion'], 'label': 'interganglionic segment mcg-stellate ganglion'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69460', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69460', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001355', 'children': [], 'synonymLabels': ['Perforating femoral artery'], 'label': 'perforating artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69513': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69513', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69513', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001539', 'children': [], 'synonymLabels': ['Deep plantar artery'], 'label': 'deep plantar artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69585': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69585', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69585', 'parent': 'http://purl.org/sig/ont/fma/fma44647', 'children': [], 'synonymLabels': ['Medial part of dorsal digital artery of great toe'], 'label': 'medial dorsal digital artery of first digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69586': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69586', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69586', 'parent': 'http://purl.org/sig/ont/fma/fma44647', 'children': [], 'synonymLabels': ['Medial part of dorsal digital artery of second toe'], 'label': 'medial dorsal digital artery of second digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69587': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69587', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69587', 'parent': 'http://purl.org/sig/ont/fma/fma44648', 'children': [], 'synonymLabels': ['Medial part of dorsal digital artery of third toe'], 'label': 'medial dorsal digital artery of third digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69588': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69588', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69588', 'parent': 'http://purl.org/sig/ont/fma/fma44649', 'children': [], 'synonymLabels': ['Medial part of dorsal digital artery of fourth toe'], 'label': 'medial dorsal digital artery of fourth digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69589': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69589', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69589', 'parent': 'http://purl.org/sig/ont/fma/fma44650', 'children': [], 'synonymLabels': ['Medial part of dorsal digital artery of fifth toe'], 'label': 'medial dorsal digital artery of fifth digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69601': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69601', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69601', 'parent': 'http://purl.org/sig/ont/fma/fma44647', 'children': [], 'synonymLabels': ['Lateral part of dorsal digital artery of great toe'], 'label': 'lateral dorsal digital artery of first digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69604': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69604', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69604', 'parent': 'http://purl.org/sig/ont/fma/fma44648', 'children': [], 'synonymLabels': ['Lateral part of dorsal digital artery of second toe'], 'label': 'lateral dorsal digital artery of second digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69607': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69607', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69607', 'parent': 'http://purl.org/sig/ont/fma/fma44649', 'children': [], 'synonymLabels': ['Lateral part of dorsal digital artery of third toe'], 'label': 'lateral dorsal digital artery of third digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69610', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69610', 'parent': 'http://purl.org/sig/ont/fma/fma44650', 'children': [], 'synonymLabels': ['Lateral part of dorsal digital artery of fourth toe'], 'label': 'lateral dorsal digital artery of fourth digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69613': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69613', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69613', 'parent': 'http://purl.org/sig/ont/fma/fma44650', 'children': [], 'synonymLabels': ['Lateral part of dorsal digital artery of fifth toe'], 'label': 'lateral dorsal digital artery of fifth digit of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69797': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69797', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69797', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001309', 'children': ['http://purl.org/sig/ont/fma/fma18871', 'http://purl.obolibrary.org/obo/UBERON_0001311', 'http://purl.obolibrary.org/obo/UBERON_0007315', 'http://purl.obolibrary.org/obo/UBERON_0001314', 'http://purl.obolibrary.org/obo/UBERON_0001312', 'http://purl.org/sig/ont/fma/fma18832'], 'synonymLabels': ['Anterior division of internal iliac artery'], 'label': 'anterior division of internal iliac artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma69798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma69798', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma69798', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001309', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001313', 'http://purl.org/sig/ont/fma/fma18855', 'http://purl.obolibrary.org/obo/UBERON_0001315'], 'synonymLabels': ['Posterior division of internal iliac artery'], 'label': 'posterior division of internal iliac artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70150': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70150', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70150', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001314', 'children': [], 'synonymLabels': ['Trunk of anterior part of obturator artery'], 'label': 'anterior branch of obturator artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70175', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70175', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001314', 'children': [], 'synonymLabels': ['Trunk of acetabular part of obturator artery'], 'label': 'acetabular branch of obturator artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70195', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70195', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001354', 'children': [], 'synonymLabels': ['Artery of round ligament of uterus'], 'label': 'artery of round ligament of uterus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70370': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70370', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70370', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002456', 'children': ['http://purl.org/sig/ont/fma/fma10648'], 'synonymLabels': ['Perforating branch of internal thoracic artery'], 'label': 'perforating branch of internal thoracic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70438': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70438', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70438', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010132', 'children': [], 'synonymLabels': ['Supraduodenal artery'], 'label': 'supraduodenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70442', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70442', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-artery', 'children': [], 'synonymLabels': ['Anterior superior segmental hepatic artery'], 'label': 'anterior superior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70443': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70443', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70443', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-artery', 'children': [], 'synonymLabels': ['Anterior inferior segmental hepatic artery'], 'label': 'anterior inferior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70445': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70445', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70445', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-artery', 'children': [], 'synonymLabels': ['Posterior superior segmental hepatic artery'], 'label': 'posterior superior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70446': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70446', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70446', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-artery', 'children': [], 'synonymLabels': ['Posterior inferior segmental hepatic artery'], 'label': 'posterior inferior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70449': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70449', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70449', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-artery', 'children': [], 'synonymLabels': ['Medial superior segmental hepatic artery'], 'label': 'medial superior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70450': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70450', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70450', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-artery', 'children': [], 'synonymLabels': ['Medial inferior segmental hepatic artery'], 'label': 'medial inferior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70452', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70452', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-artery', 'children': [], 'synonymLabels': ['Lateral superior segmental hepatic artery'], 'label': 'lateral superior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70453', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70453', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-artery', 'children': [], 'synonymLabels': ['Lateral inferior segmental hepatic artery'], 'label': 'lateral inferior segmental hepatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70471': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70471', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70471', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': ['https://purl.org/ccf/ASCTB-TEMP_interlobular-artery-of-pancreas'], 'synonymLabels': ['Pancreatic artery'], 'label': 'pancreatic artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70479': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70479', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70479', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001195', 'children': [], 'synonymLabels': ['Anterior inferior pancreaticoduodenal artery'], 'label': 'anterior inferior pancreaticoduodenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70480': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70480', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70480', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001195', 'children': [], 'synonymLabels': ['Posterior inferior pancreaticoduodenal artery'], 'label': 'posterior inferior pancreaticoduodenal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70494': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70494', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70494', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009885'], 'synonymLabels': ['Segmental renal artery'], 'label': 'segmental renal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70499': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70499', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70499', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': ['Superior segmental renal artery'], 'label': 'superior segmental renal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70500': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70500', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70500', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': ['Anterior superior segmental renal artery'], 'label': 'anterior superior segmental renal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70501': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70501', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70501', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': ['Anterior inferior segmental renal artery'], 'label': 'anterior inferior segmental renal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70502': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70502', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70502', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': ['Inferior segmental renal artery'], 'label': 'inferior segmental renal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70503': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70503', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70503', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001184', 'children': [], 'synonymLabels': ['Posterior segmental renal artery'], 'label': 'posterior segmental renal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7053': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7053', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7053', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of first lumbar nerve'], 'label': 'dorsal ramus of first lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7054', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7054', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Suboccipital nerve'], 'label': 'dorsal ramus of first cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7061': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7061', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7061', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of first cervical nerve'], 'label': 'ventral ramus of first cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7062', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7062', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of second cervical nerve'], 'label': 'ventral ramus of second cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7065', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7065', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of first lumbar nerve'], 'label': 'ventral ramus of first lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7068', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7068', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of first sacral nerve'], 'label': 'ventral ramus of first sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7072', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7072', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of coccygeal nerve'], 'label': 'ventral ramus of coccygeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7075', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7075', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of first thoracic nerve'], 'label': 'dorsal ramus of first thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7076': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7076', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7076', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of second thoracic nerve'], 'label': 'dorsal ramus of second thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70777': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70777', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70777', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['Set of short posterior ciliary arteries'], 'label': 'short posterior ciliary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70778': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70778', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70778', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001619', 'children': [], 'synonymLabels': ['Set of long posterior ciliary arteries'], 'label': 'long posterior ciliary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7079', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7079', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of first sacral nerve'], 'label': 'dorsal ramus of first sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70889': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70889', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70889', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001072', 'children': [], 'synonymLabels': ['Set of lumbar veins'], 'label': 'lumbar vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70892': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70892', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70892', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_anterior-radicular-vein', 'children': ['https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein'], 'synonymLabels': ['Set of anterior spinal veins'], 'label': 'anterior spinal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70893': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70893', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70893', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-radicular-vein', 'children': ['https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-2'], 'synonymLabels': ['Set of posterior spinal veins'], 'label': 'posterior spinal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70921': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70921', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70921', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001361', 'children': [], 'synonymLabels': ['Set of lateral circumflex femoral veins'], 'label': 'lateral femoral circumflex vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma70929': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma70929', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma70929', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003713', 'children': ['https://purl.org/ccf/ASCTB-TEMP_interlobular-vein-of-pancreas'], 'synonymLabels': ['Set of pancreatic veins'], 'label': 'pancreatic vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71302': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71302', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71302', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'children': ['https://purl.org/ccf/ASCTB-TEMP_iliocostalis-cervicalis-muscle', 'http://purl.org/sig/ont/fma/fma22702', 'http://purl.obolibrary.org/obo/UBERON_0001400', 'http://purl.org/sig/ont/fma/fma22714', 'http://purl.obolibrary.org/obo/UBERON_0001402', 'http://purl.obolibrary.org/obo/UBERON_0001401', 'http://purl.obolibrary.org/obo/UBERON_0011014', 'http://purl.obolibrary.org/obo/UBERON_0011218', 'http://purl.obolibrary.org/obo/UBERON_0001405'], 'synonymLabels': ['Erector spinae muscle group'], 'label': 'erector spinae muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71307': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71307', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71307', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': ['Set of interspinales lumborum'], 'label': 'interspinales lumborum muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71308': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71308', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71308', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': ['Set of interspinales thoracis'], 'label': 'interspinales thoracis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71439', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71439', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.org/sig/ont/fma/fma32528', 'http://purl.org/sig/ont/fma/fma32527', 'http://purl.obolibrary.org/obo/UBERON_0008454', 'https://purl.org/ccf/ASCTB-TEMP_rectus-capitius-posterior-minor-muscle'], 'synonymLabels': ['Set of suboccipital muscles'], 'label': 'suboccipital muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71479': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71479', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71479', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Set of lenticulostriate arteries'], 'label': 'lenticulostriate artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71492', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71492', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001633', 'children': [], 'synonymLabels': ['Set of paramedian arteries'], 'label': 'paramedian artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71523': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71523', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71523', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007149', 'children': [], 'synonymLabels': ['Set of pharyngeal branches of inferior thyroid artery'], 'label': 'pharyngeal branches of inferior thyroid artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71525': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71525', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71525', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007149', 'children': [], 'synonymLabels': ['Set of tracheal branches of inferior thyroid artery'], 'label': 'tracheal branches of inferior thyroid artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71534': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71534', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71534', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001404', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-first-digit-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-artery-of-first-digit-of-hand'], 'synonymLabels': ['Set of princeps pollicis artery'], 'label': 'princeps pollicis artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71544': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71544', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71544', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001192', 'children': [], 'synonymLabels': ['Set of oesophageal branches of left gastric artery'], 'label': 'esophageal branches of left gastric artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71587': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71587', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71587', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001544', 'children': [], 'synonymLabels': ['Set of peroneal veins'], 'label': 'peroneal vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71675': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71675', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71675', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001612', 'children': [], 'synonymLabels': ['Set of glandular branches of facial artery'], 'label': 'glandular branches of facial artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71743': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71743', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71743', 'parent': 'http://purl.org/sig/ont/fma/fma323948', 'children': ['http://purl.org/sig/ont/fma/fma234924'], 'synonymLabels': ['Set of humeral lymph nodes'], 'label': 'humeral lymph node #2'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71749': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71749', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71749', 'parent': 'http://purl.org/sig/ont/fma/fma12252', 'children': ['https://purl.org/ccf/ASCTB-TEMP_medial-lymphatic-pathway-of-upper-arm'], 'synonymLabels': ['Central axillary lymph node group'], 'label': 'central axillary lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71813': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71813', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71813', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': ['http://purl.org/sig/ont/fma/fma71841'], 'synonymLabels': ['Inferior mesenteric lymph node group'], 'label': 'inferior mesenteric lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma71841': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma71841', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma71841', 'parent': 'http://purl.org/sig/ont/fma/fma71813', 'children': [], 'synonymLabels': ['Pararectal lymph node group'], 'label': 'pararectal lymph node'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7206': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7206', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7206', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002114', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000320', 'http://purl.obolibrary.org/obo/UBERON_0012401', 'http://purl.obolibrary.org/obo/UBERON_0003336', 'http://purl.obolibrary.org/obo/UBERON_0003332'], 'synonymLabels': ['Duodenum'], 'label': 'superior duodenum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7213': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7213', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7213', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': [], 'synonymLabels': ['Right ovary'], 'label': 'right ovary'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7214': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7214', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7214', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': [], 'synonymLabels': ['Left ovary'], 'label': 'left ovary'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7272': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7272', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7272', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002080', 'children': [], 'synonymLabels': ['Septomarginal trabecula'], 'label': 'moderator band'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7488': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7488', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7488', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': ['Xiphoid process'], 'label': 'xiphoid process of sternum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma75328': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma75328', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma75328', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': ['Popliteal surface of femur'], 'label': 'popliteal surface of femur'}),\n",
      "  'http://purl.org/sig/ont/fma/fma75330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma75330', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma75330', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': ['Anterior talar articular surface of calcaneus'], 'label': 'anterior talar articular surface of calcaneus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma75331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma75331', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma75331', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': ['Middle talar articular surface of calcaneus'], 'label': 'middle talar articular surface of calcaneus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma75332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma75332', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma75332', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': ['Posterior talar articular surface of calcaneus'], 'label': 'posterior talar articular surface of calcaneus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma75360': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma75360', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma75360', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': ['Set of alveolar canal spaces of maxilla'], 'label': 'alveolar canals of maxilla'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7541': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7541', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7541', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': ['Clavicular facet of sternum'], 'label': 'clavicular notch of sternum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7542': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7542', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7542', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': ['Jugular notch of sternum'], 'label': 'jugular notch of sternum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma75796': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma75796', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma75796', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': ['Set of transverse ridges of sacrum'], 'label': 'transverse ridges of sacrum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7600': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7600', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7600', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': ['Head of first rib'], 'label': 'head of first rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7601': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7601', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7601', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': ['Neck of first rib'], 'label': 'neck of first rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7602': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7602', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7602', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': ['Body of first rib'], 'label': 'body of first rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7605': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7605', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7605', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': ['Tubercle of first rib'], 'label': 'tubercle of first rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7606': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7606', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7606', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': ['Articular facet of tubercle of first rib'], 'label': 'articular facet of tubercle of first rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7608', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7608', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': ['Angle of first rib'], 'label': 'angle of first rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7621': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7621', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7621', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Head of second rib'], 'label': 'head of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7622': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7622', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7622', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Neck of second rib'], 'label': 'neck of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7623', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7623', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Body of second rib'], 'label': 'body of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7624': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7624', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7624', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Superior articular facet of head of second rib'], 'label': 'superior articular facet of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7626': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7626', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7626', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Tubercle of second rib'], 'label': 'tubercle of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7627': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7627', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7627', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Articular facet of tubercle of second rib'], 'label': 'articular facet of tubercle of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7628', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Inferior articular facet of head of second rib'], 'label': 'inferior articular facet of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7630': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7630', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7630', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Angle of second rib'], 'label': 'angle of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7636', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7636', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': ['Costal groove of second rib'], 'label': 'costal groove of second rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7639': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7639', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7639', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Head of third rib'], 'label': 'head of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7640': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7640', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7640', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Crest of head of third rib'], 'label': 'crest of head of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7643': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7643', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7643', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002260', 'children': [], 'synonymLabels': ['Anterior root of first thoracic nerve'], 'label': 'ventral root of the first thoracic spinal cord segment'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7645': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7645', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7645', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['First intercostal nerve'], 'label': 'ventral ramus of first thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma76642': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma76642', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma76642', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001455', 'children': [], 'synonymLabels': ['Tuberosity of cuboid bone'], 'label': 'tuberosity of cuboid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma76644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma76644', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma76644', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003654', 'children': [], 'synonymLabels': ['Tuberosity of fifth metatarsal bone'], 'label': 'tuberosity of fifth metatarsal bone'}),\n",
      "  'http://purl.org/sig/ont/fma/fma76736': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma76736', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma76736', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001588', 'children': ['http://purl.org/sig/ont/fma/fma4869', 'https://purl.org/ccf/ASCTB-TEMP_anterior-radicular-vein', 'http://purl.org/sig/ont/fma/fma4870', 'https://purl.org/ccf/ASCTB-TEMP_posterior-radicular-vein'], 'synonymLabels': ['Intervertebral vein'], 'label': 'intervertebral vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma76767': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma76767', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma76767', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': [], 'synonymLabels': ['Anterior cardiac vein'], 'label': 'anterior cardiac veins'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7699': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7699', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7699', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Neck of third rib'], 'label': 'neck of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7700': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7700', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7700', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Body of third rib'], 'label': 'body of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7705': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7705', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7705', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Superior articular facet of head of third rib'], 'label': 'superior articular facet of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7706': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7706', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7706', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Inferior articular facet of head of third rib'], 'label': 'inferior articular facet of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7708', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7708', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Tubercle of third rib'], 'label': 'tubercle of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7709': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7709', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7709', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Articular facet of tubercle of third rib'], 'label': 'articular facet of tubercle of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7711', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7711', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Angle of third rib'], 'label': 'angle of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7714', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7714', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': ['Costal groove of third rib'], 'label': 'costal groove of third rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77213': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77213', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77213', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Branch of right vagus nerve to pancreas'], 'label': 'branch of right vagus nerve to pancreas'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77253', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77253', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': ['Puboprostaticus'], 'label': 'puboprostaticus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77260': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77260', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77260', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001526', 'children': [], 'synonymLabels': ['Humeral head of extensor carpi ulnaris'], 'label': 'humeral head of extensor carpi ulnaris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77261', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77261', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001526', 'children': [], 'synonymLabels': ['Ulnar head of extensor carpi ulnaris'], 'label': 'ulnar head of extensor carpi ulnaris muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77439', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77439', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': ['Artery of central sulcus'], 'label': 'artery of central sulcus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7750': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7750', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7750', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Head of fourth rib'], 'label': 'head of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7751', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7751', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Crest of head of fourth rib'], 'label': 'crest of head of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77524': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77524', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77524', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000377', 'children': [], 'synonymLabels': ['Pharyngeal nerve'], 'label': 'pharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7753': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7753', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7753', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Superior articular facet of head of fourth rib'], 'label': 'superior articular facet of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7754': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7754', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7754', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Inferior articular facet of head of fourth rib'], 'label': 'inferior articular facet of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77541': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77541', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77541', 'parent': 'http://purl.org/sig/ont/fma/fma6720', 'children': [], 'synonymLabels': ['Vagal part of accessory nerve'], 'label': 'vagal part of accessory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77543', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77543', 'parent': 'http://purl.org/sig/ont/fma/fma6720', 'children': [], 'synonymLabels': ['Internal branch of accessory nerve'], 'label': 'internal branch of accessory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77544': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77544', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77544', 'parent': 'http://purl.org/sig/ont/fma/fma6720', 'children': [], 'synonymLabels': ['External branch of accessory nerve'], 'label': 'external branch of accessory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7755': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7755', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7755', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Neck of fourth rib'], 'label': 'neck of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77559': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77559', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77559', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Posterior interosseous nerve'], 'label': 'deep branch of radial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7757': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7757', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7757', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Body of fourth rib'], 'label': 'body of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7758': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7758', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7758', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Tubercle of fourth rib'], 'label': 'tubercle of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7759': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7759', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7759', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Articular facet of tubercle of fourth rib'], 'label': 'articular facet of tubercle of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77602': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77602', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77602', 'parent': 'http://purl.org/sig/ont/fma/fma19039', 'children': [], 'synonymLabels': ['Sural communicating branch of common peroneal nerve with medial sural cutaneous nerve'], 'label': 'sural communicating branch of common peroneal nerve with medial sural cutaneous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7761': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7761', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7761', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Angle of fourth rib'], 'label': 'angle of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7764': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7764', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7764', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': ['Costal groove of fourth rib'], 'label': 'costal groove of fourth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7777': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7777', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7777', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Head of fifth rib'], 'label': 'head of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7778': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7778', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7778', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Crest of head of fifth rib'], 'label': 'crest of head of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7780': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7780', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7780', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Superior articular facet of head of fifth rib'], 'label': 'superior articular facet of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7781': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7781', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7781', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Inferior articular facet of head of fifth rib'], 'label': 'inferior articular facet of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7782', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7782', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Neck of fifth rib'], 'label': 'neck of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7784': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7784', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7784', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Body of fifth rib'], 'label': 'body of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7785': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7785', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7785', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Tubercle of fifth rib'], 'label': 'tubercle of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7786': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7786', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7786', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Articular facet of tubercle of fifth rib'], 'label': 'articular facet of tubercle of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7788': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7788', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7788', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Angle of fifth rib'], 'label': 'angle of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7791': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7791', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7791', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': ['Costal groove of fifth rib'], 'label': 'costal groove of fifth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma77991': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma77991', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma77991', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001649', 'children': [], 'synonymLabels': ['Parotid branch of glossopharyngeal nerve'], 'label': 'parotid branch of glossopharyngeal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7804': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7804', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7804', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Head of sixth rib'], 'label': 'head of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7805': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7805', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7805', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Crest of head of sixth rib'], 'label': 'crest of head of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7807': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7807', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7807', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Superior articular facet of head of sixth rib'], 'label': 'superior articular facet of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7808': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7808', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7808', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Inferior articular facet of head of sixth rib'], 'label': 'inferior articular facet of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7809': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7809', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7809', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Neck of sixth rib'], 'label': 'neck of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7811': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7811', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7811', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Body of sixth rib'], 'label': 'body of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7812': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7812', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7812', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Tubercle of sixth rib'], 'label': 'tubercle of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7813': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7813', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7813', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Articular facet of tubercle of sixth rib'], 'label': 'articular facet of tubercle of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7815': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7815', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7815', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Angle of sixth rib'], 'label': 'angle of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7818': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7818', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7818', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': ['Costal groove of sixth rib'], 'label': 'costal groove of sixth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7831': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7831', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7831', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Head of seventh rib'], 'label': 'head of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7832': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7832', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7832', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Crest of head of seventh rib'], 'label': 'crest of head of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7834', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7834', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Superior articular facet of head of seventh rib'], 'label': 'superior articular facet of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7835': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7835', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7835', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Inferior articular facet of head of seventh rib'], 'label': 'inferior articular facet of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7836': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7836', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7836', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Neck of seventh rib'], 'label': 'neck of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7838': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7838', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7838', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Body of seventh rib'], 'label': 'body of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7839', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7839', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Tubercle of seventh rib'], 'label': 'tubercle of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7840', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Articular facet of tubercle of seventh rib'], 'label': 'articular facet of tubercle of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7842': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7842', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7842', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Angle of seventh rib'], 'label': 'angle of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma7845': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma7845', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma7845', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': ['Costal groove of seventh rib'], 'label': 'costal groove of seventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78582': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78582', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78582', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001759', 'children': [], 'synonymLabels': ['Gastric branch of vagus nerve'], 'label': 'gastric branch of vagus nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78594': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78594', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78594', 'parent': 'http://purl.org/sig/ont/fma/fma61917', 'children': [], 'synonymLabels': [], 'label': 'nerve to subclavius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78648', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78648', 'parent': 'http://purl.org/sig/ont/fma/fma65414', 'children': [], 'synonymLabels': ['Medial supraclavicular nerve'], 'label': 'medial supraclavicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78651', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78651', 'parent': 'http://purl.org/sig/ont/fma/fma65414', 'children': [], 'synonymLabels': ['Intermediate supraclavicular nerve'], 'label': 'intermediate supraclavicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78654', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78654', 'parent': 'http://purl.org/sig/ont/fma/fma65414', 'children': [], 'synonymLabels': ['Lateral supraclavicular nerve'], 'label': 'lateral supraclavicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78705': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78705', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78705', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Nerve to quadratus femoris'], 'label': 'branch of sacral nerve plexus to quadratus femoris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78708', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78708', 'parent': 'http://purl.org/sig/ont/fma/fma81170', 'children': [], 'synonymLabels': ['Nerve to gemellus superior'], 'label': 'nerve to gemellus superior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78711', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78711', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Nerve to obturator internus'], 'label': 'branch of sacral nerve plexus to obturator internus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma78714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma78714', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma78714', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': [], 'synonymLabels': ['Nerve to gemellus inferior'], 'label': 'branch of sacral nerve plexus to gemellus inferior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79467': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79467', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79467', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Accessory meningeal artery'], 'label': 'accessory meningeal artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79658': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79658', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79658', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001533', 'children': [], 'synonymLabels': ['Dorsal scapular artery'], 'label': 'dorsal scapular artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79880': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79880', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79880', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to temporoparietalis'], 'label': 'branch of temporal branch of facial nerve to temporoparietalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79892': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79892', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79892', 'parent': 'http://purl.org/sig/ont/fma/fma44768', 'children': [], 'synonymLabels': ['Nerve to third plantar interosseous of foot'], 'label': 'nerve to third plantar interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79913': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79913', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79913', 'parent': 'http://purl.org/sig/ont/fma/fma44768', 'children': [], 'synonymLabels': ['Nerve to flexor digiti minimi brevis of foot'], 'label': 'nerve to flexor digiti minimi brevis of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79971': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79971', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79971', 'parent': 'http://purl.org/sig/ont/fma/fma44724', 'children': [], 'synonymLabels': ['Nerve to flexor accessorius'], 'label': 'nerve to flexor accessorius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma79972': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma79972', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma79972', 'parent': 'http://purl.org/sig/ont/fma/fma44724', 'children': [], 'synonymLabels': ['Nerve to abductor digiti minimi of foot'], 'label': 'nerve to abductor digiti minimi of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80012', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80012', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to third lumbrical of foot'], 'label': 'nerve to third lumbrical of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80015', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80015', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to fourth lumbrical of foot'], 'label': 'nerve to fourth lumbrical of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80028', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80028', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to first plantar interosseous of foot'], 'label': 'nerve to first plantar interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80031': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80031', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80031', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to second plantar interosseous of foot'], 'label': 'nerve to second plantar interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80032', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80032', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to first dorsal interosseous of foot'], 'label': 'nerve to first dorsal interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80033', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80033', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to second dorsal interosseous of foot'], 'label': 'nerve to second dorsal interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80034', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80034', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to third dorsal interosseous of foot'], 'label': 'nerve to third dorsal interosseous of foot'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80043': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80043', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80043', 'parent': 'http://purl.org/sig/ont/fma/fma44764', 'children': [], 'synonymLabels': ['Nerve to adductor hallucis'], 'label': 'nerve to adductor hallucis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80052': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80052', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80052', 'parent': 'http://purl.org/sig/ont/fma/fma44740', 'children': [], 'synonymLabels': ['Nerve to talcalcaneonavicular joint'], 'label': 'nerve to talcalcaneonavicular joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80055': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80055', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80055', 'parent': 'http://purl.org/sig/ont/fma/fma44740', 'children': [], 'synonymLabels': ['Nerve to cuneonavicular joint'], 'label': 'nerve to cuneonavicular joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80062', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80062', 'parent': 'http://purl.org/sig/ont/fma/fma44782', 'children': [], 'synonymLabels': ['Nerve to tibialis anterior'], 'label': 'nerve to tibialis anterior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80065', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80065', 'parent': 'http://purl.org/sig/ont/fma/fma44782', 'children': [], 'synonymLabels': ['Nerve to extensor hallucis longus'], 'label': 'nerve to extensor hallucis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80068', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80068', 'parent': 'http://purl.org/sig/ont/fma/fma44782', 'children': [], 'synonymLabels': ['Nerve to extensor digitorum longus'], 'label': 'nerve to extensor digitorum longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80071', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80071', 'parent': 'http://purl.org/sig/ont/fma/fma44782', 'children': [], 'synonymLabels': ['Nerve to fibularis tertius'], 'label': 'nerve to fibularis tertius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80076': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80076', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80076', 'parent': 'http://purl.org/sig/ont/fma/fma44778', 'children': [], 'synonymLabels': ['Nerve to extensor hallucis brevis'], 'label': 'nerve to extensor hallucis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80079', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80079', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Nerve to fibularis longus'], 'label': 'muscular branch of superficial fibular nerve to fibularis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80082': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80082', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80082', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Nerve to fibularis brevis'], 'label': 'muscular branch of superficial fibular nerve to fibularis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80085': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80085', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80085', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': ['http://purl.org/sig/ont/fma/fma80087', 'http://purl.org/sig/ont/fma/fma80088', 'http://purl.org/sig/ont/fma/fma80095', 'http://purl.org/sig/ont/fma/fma80086'], 'synonymLabels': ['Articular branch of tibial nerve'], 'label': 'articular branch of tibial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80086': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80086', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80086', 'parent': 'http://purl.org/sig/ont/fma/fma80085', 'children': [], 'synonymLabels': ['Superior genicular nerve'], 'label': 'superior genicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80087': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80087', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80087', 'parent': 'http://purl.org/sig/ont/fma/fma80085', 'children': [], 'synonymLabels': ['Inferior medial genicular nerve'], 'label': 'inferior medial genicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80088', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80088', 'parent': 'http://purl.org/sig/ont/fma/fma80085', 'children': [], 'synonymLabels': ['Middle genicular nerve'], 'label': 'middle genicular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80095', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80095', 'parent': 'http://purl.org/sig/ont/fma/fma80085', 'children': [], 'synonymLabels': ['Nerve to ankle joint'], 'label': 'nerve to ankle joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80098': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80098', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80098', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to flexor hallucis longus'], 'label': 'muscular branch of tibial nerve to flexor hallucis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80101': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80101', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80101', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to flexor digitorum longus'], 'label': 'muscular branch of tibial nerve to flexor digitorum longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80104': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80104', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80104', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to tibialis posterior'], 'label': 'muscular branch of tibial nerve to tibialis posterior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80151': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80151', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80151', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Adductor magnus branch of tibial nerve'], 'label': 'adductor magnus branch of tibial nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80157', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80157', 'parent': 'http://purl.org/sig/ont/fma/fma45306', 'children': [], 'synonymLabels': ['Nerve to gracilis'], 'label': 'nerve to gracilis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80160': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80160', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80160', 'parent': 'http://purl.org/sig/ont/fma/fma45307', 'children': [], 'synonymLabels': ['Nerve to obturator externus'], 'label': 'nerve to obturator externus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80165': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80165', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80165', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034987', 'children': [], 'synonymLabels': ['Branch of accessory obturator nerve to hip joint'], 'label': 'branch of accessory obturator nerve to hip joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80171', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80171', 'parent': 'http://purl.org/sig/ont/fma/fma19035', 'children': [], 'synonymLabels': ['Nerve to semimembranosus'], 'label': 'muscular branch of tibial nerve to semimembranosus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80189', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80189', 'parent': 'http://purl.org/sig/ont/fma/fma16510', 'children': [], 'synonymLabels': ['Nerve to tensor fasciae latae'], 'label': 'branch of superior gluteal nerve to tensor fasciae latae'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80192', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80192', 'parent': 'http://purl.org/sig/ont/fma/fma16510', 'children': [], 'synonymLabels': ['Nerve to gluteus minimus'], 'label': 'branch of superior gluteal nerve to gluteus minimus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80195', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80195', 'parent': 'http://purl.org/sig/ont/fma/fma16510', 'children': [], 'synonymLabels': ['Nerve to gluteus medius'], 'label': 'branch of superior gluteal nerve to gluteus medius'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80206': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80206', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80206', 'parent': 'http://purl.org/sig/ont/fma/fma16511', 'children': [], 'synonymLabels': ['Nerve to gluteus maximus (1)'], 'label': 'nerve to gluteus maximus (1)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80207': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80207', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80207', 'parent': 'http://purl.org/sig/ont/fma/fma16511', 'children': [], 'synonymLabels': ['Nerve to gluteus maximus (2)'], 'label': 'nerve to gluteus maximus (2)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80208': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80208', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80208', 'parent': 'http://purl.org/sig/ont/fma/fma16511', 'children': [], 'synonymLabels': ['Nerve to gluteus maximus (n)'], 'label': 'nerve to gluteus maximus (n)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80215', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80215', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Branch of deep branch of ulnar nerve to third lumbrical of hand'], 'label': 'branch of deep branch of ulnar nerve to third lumbrical of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80218': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80218', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80218', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to fourth lumbrical of hand'], 'label': 'branch of deep branch of ulnar nerve to fourth lumbrical of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80225': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80225', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80225', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Branch of median nerve to third lumbrical of hand'], 'label': 'branch of median nerve to third lumbrical of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80231', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80231', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to first dorsal interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to first dorsal interosseous of han'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80234', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80234', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to second dorsal interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to second dorsal interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80237': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80237', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80237', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to third dorsal interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to third dorsal interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80240', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80240', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to fourth dorsal interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to fourth dorsal interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80243', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80243', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to first palmar interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to first palmar interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80246', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80246', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to second palmar interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to second palmar interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80249', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80249', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to third palmar interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to third palmar interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80252', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80252', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to fourth palmar interosseous of hand'], 'label': 'branch of deep branch of ulnar nerve to fourth palmar interosseous of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80255', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80255', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to opponens digiti minimi'], 'label': 'branch of deep branch of ulnar nerve to opponens digiti minimi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80258': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80258', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80258', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to flexor digiti minimi brevis of hand'], 'label': 'branch of deep branch of ulnar nerve to flexor digiti minimi brevis of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80261', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80261', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to abductor digiti minimi of hand'], 'label': 'branch of deep branch of ulnar nerve to abductor digiti minimi of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80264': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80264', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80264', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to adductor pollicis'], 'label': 'branch of deep branch of ulnar nerve to adductor pollicis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80267': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80267', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80267', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Nerve to superficial head of flexor pollicis brevis'], 'label': 'branch of median nerve to superficial head of flexor pollicis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80270': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80270', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80270', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Nerve to deep head of flexor pollicis brevis'], 'label': 'branch of deep branch of ulnar nerve to deep head of flexor pollicis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80273': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80273', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80273', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Branch of median nerve to opponens pollicis'], 'label': 'branch of median nerve to opponens pollicis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80276', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80276', 'parent': 'http://purl.org/sig/ont/fma/fma44877', 'children': [], 'synonymLabels': ['Branch of deep branch of ulnar nerve to opponens pollicis'], 'label': 'branch of deep branch of ulnar nerve to opponens pollicis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80279', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80279', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001148', 'children': [], 'synonymLabels': ['Nerve to abductor pollicis brevis'], 'label': 'branch of median nerve to abductor pollicis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80285', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80285', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': ['http://purl.org/sig/ont/fma/fma80295', 'http://purl.org/sig/ont/fma/fma81191', 'http://purl.org/sig/ont/fma/fma81182', 'http://purl.org/sig/ont/fma/fma81185', 'http://purl.org/sig/ont/fma/fma81188', 'http://purl.org/sig/ont/fma/fma80286', 'http://purl.org/sig/ont/fma/fma80292', 'http://purl.org/sig/ont/fma/fma80289', 'http://purl.org/sig/ont/fma/fma80298'], 'synonymLabels': ['Branch of posterior interosseous nerve'], 'label': 'posterior interosseous nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80286': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80286', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80286', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor indicis'], 'label': 'branch of posterior interosseous nerve to extensor indicis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80289': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80289', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80289', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor pollicis longus'], 'label': 'branch of posterior interosseous nerve to extensor pollicis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80292': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80292', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80292', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor pollicis brevis'], 'label': 'branch of posterior interosseous nerve to extensor pollicis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80295': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80295', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80295', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to abductor pollicis longus'], 'label': 'branch of posterior interosseous nerve to abductor pollicis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma80298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma80298', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma80298', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to supinator'], 'label': 'branch of posterior interosseous nerve to supinator'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81163': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81163', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81163', 'parent': 'http://purl.org/sig/ont/fma/fma45306', 'children': [], 'synonymLabels': ['Articular branch of obturator nerve'], 'label': 'articular branch of obturator nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81166': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81166', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81166', 'parent': 'http://purl.org/sig/ont/fma/fma45306', 'children': [], 'synonymLabels': ['Branch of anterior branch of obturator nerve to subsartorial nerve plexus'], 'label': 'branch of anterior branch of obturator nerve to subsartorial nerve plexus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81170': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81170', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81170', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0034986', 'children': ['http://purl.org/sig/ont/fma/fma81171', 'http://purl.org/sig/ont/fma/fma78708'], 'synonymLabels': ['Branch of nerve to obturator internus'], 'label': 'branch of sacral nerve plexus to obturator internus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81171', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81171', 'parent': 'http://purl.org/sig/ont/fma/fma81170', 'children': [], 'synonymLabels': ['Nerve proper to obturator internus'], 'label': 'nerve proper to obturator internus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81179': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81179', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81179', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Nerve to mentalis'], 'label': 'nerve to mentalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81182', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81182', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor carpi ulnaris'], 'label': 'branch of posterior interosseous nerve to extensor carpi ulnaris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81185': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81185', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81185', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor digiti minimi'], 'label': 'branch of posterior interosseous nerve to extensor digiti minimi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81188', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81188', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor digitorum'], 'label': 'branch of posterior interosseous nerve to extensor digitorum'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81191': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81191', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81191', 'parent': 'http://purl.org/sig/ont/fma/fma80285', 'children': [], 'synonymLabels': ['Nerve to extensor carpi radialis brevis'], 'label': 'branch of posterior interosseous nerve to extensor carpi radialis brevis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81195', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81195', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Ulnar collateral nerve'], 'label': 'medial muscular branch of radial nerve to medial head of triceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81198', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81198', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Nerve to long head of triceps brachii'], 'label': 'medial muscular branch of radial nerve to long head of triceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81205': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81205', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81205', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Nerve to extensor carpi radialis longus'], 'label': 'lateral muscular branch of radial nerve to extensor carpi radialis longus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8121': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8121', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8121', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Head of eighth rib'], 'label': 'head of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8122': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8122', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8122', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Crest of head of eighth rib'], 'label': 'crest of head of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81220': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81220', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81220', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001494', 'children': [], 'synonymLabels': ['Nerve to flexor carpi ulnaris'], 'label': 'branch of ulnar nerve to flexor carpi ulnaris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81223': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81223', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81223', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Nerve to anconeus'], 'label': 'posterior muscular branch of radial nerve to anconeus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81232', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81232', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001492', 'children': [], 'synonymLabels': ['Nerve to articularis cubiti'], 'label': 'medial muscular branch of radial nerve to articularis cubiti'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81239', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81239', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Branch of musculocutaneous nerve to long head of biceps brachii'], 'label': 'branch of musculocutaneous nerve to long head of biceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8124': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8124', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8124', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Superior articular facet of head of eighth rib'], 'label': 'superior articular facet of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81240', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81240', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003724', 'children': [], 'synonymLabels': ['Branch of musculocutaneous nerve to short head of biceps brachii'], 'label': 'branch of musculocutaneous nerve to short head of biceps brachii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81246', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81246', 'parent': 'http://purl.org/sig/ont/fma/fma65296', 'children': ['http://purl.org/sig/ont/fma/fma81247', 'http://purl.org/sig/ont/fma/fma84178', 'http://purl.org/sig/ont/fma/fma81330', 'http://purl.org/sig/ont/fma/fma81250'], 'synonymLabels': ['Branch of lateral pectoral nerve'], 'label': 'branch of lateral pectoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81247': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81247', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81247', 'parent': 'http://purl.org/sig/ont/fma/fma81246', 'children': [], 'synonymLabels': ['Branch of lateral pectoral nerve to clavicular part of pectoralis major'], 'label': 'branch of lateral pectoral nerve to clavicular part of pectoralis major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8125', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8125', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Inferior articular facet of head of eighth rib'], 'label': 'inferior articular facet of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81250', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81250', 'parent': 'http://purl.org/sig/ont/fma/fma81246', 'children': [], 'synonymLabels': ['Pectoralis minor branch of lateral pectoral nerve'], 'label': 'pectoralis minor branch of lateral pectoral nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81258': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81258', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81258', 'parent': 'http://purl.org/sig/ont/fma/fma65290', 'children': [], 'synonymLabels': ['Nerve to latissimus dorsi'], 'label': 'branch of thoracodorsal nerve to latissimus dorsi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8126': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8126', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8126', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Neck of eighth rib'], 'label': 'neck of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81260': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81260', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81260', 'parent': 'http://purl.org/sig/ont/fma/fma65293', 'children': [], 'synonymLabels': ['Branch of medial pectoral nerve to clavicular part of pectoralis major'], 'label': 'branch of medial pectoral nerve to clavicular part of pectoralis major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81263': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81263', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81263', 'parent': 'http://purl.org/sig/ont/fma/fma65293', 'children': [], 'synonymLabels': ['Pectoralis minor branch of medial pectoral nerve (1)'], 'label': 'branch of medial pectoral nerve to pectoralis minor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81278': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81278', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81278', 'parent': 'http://purl.org/sig/ont/fma/fma65304', 'children': [], 'synonymLabels': ['Subscapularis branch of superior subscapular nerve (1)'], 'label': 'subscapularis branch of superior subscapular nerve (1)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8128': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8128', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8128', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Body of eighth rib'], 'label': 'body of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81281': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81281', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81281', 'parent': 'http://purl.org/sig/ont/fma/fma65304', 'children': [], 'synonymLabels': ['Subscapularis branch of superior subscapular nerve (2)'], 'label': 'subscapularis branch of superior subscapular nerve (2)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81285', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81285', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001493', 'children': ['http://purl.org/sig/ont/fma/fma81325', 'http://purl.org/sig/ont/fma/fma81322'], 'synonymLabels': ['Anterior branch of axillary nerve'], 'label': 'anterior branch of axillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81286': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81286', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81286', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001493', 'children': ['http://purl.org/sig/ont/fma/fma84175', 'http://purl.org/sig/ont/fma/fma65301', 'http://purl.org/sig/ont/fma/fma65300', 'http://purl.org/sig/ont/fma/fma65303'], 'synonymLabels': ['Posterior branch of axillary nerve'], 'label': 'posterior branch of axillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8129': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8129', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8129', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Tubercle of eighth rib'], 'label': 'tubercle of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81297': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81297', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81297', 'parent': 'http://purl.org/sig/ont/fma/fma65307', 'children': [], 'synonymLabels': ['Subscapularis branch of inferior subscapular nerve'], 'label': 'subscapularis branch of inferior subscapular nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8130': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8130', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8130', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Articular facet of tubercle of eighth rib'], 'label': 'articular facet of tubercle of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81300', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81300', 'parent': 'http://purl.org/sig/ont/fma/fma65307', 'children': [], 'synonymLabels': ['Nerve to teres major'], 'label': 'branch of inferior subscapular nerve to teres major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81304': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81304', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81304', 'parent': 'http://purl.org/sig/ont/fma/fma37025', 'children': [], 'synonymLabels': ['Nerve to supraspinatus'], 'label': 'branch of suprascapular nerve to supraspinatus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81307': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81307', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81307', 'parent': 'http://purl.org/sig/ont/fma/fma37025', 'children': [], 'synonymLabels': ['Branch of suprascapular nerve to glenohumeral joint'], 'label': 'branch of suprascapular nerve to glenohumeral joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81314', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81314', 'parent': 'http://purl.org/sig/ont/fma/fma37025', 'children': [], 'synonymLabels': ['Nerve to infraspinatus muscle'], 'label': 'branch of suprascapular nerve to infraspinatus muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8132', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8132', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Angle of eighth rib'], 'label': 'angle of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81322', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81322', 'parent': 'http://purl.org/sig/ont/fma/fma81285', 'children': [], 'synonymLabels': ['Deltoid branch of anterior branch of axillary nerve'], 'label': 'deltoid branch of anterior branch of axillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81325': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81325', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81325', 'parent': 'http://purl.org/sig/ont/fma/fma81285', 'children': [], 'synonymLabels': ['Cutaneous branch of anterior branch of axillary nerve'], 'label': 'cutaneous branch of anterior branch of axillary nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81330', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81330', 'parent': 'http://purl.org/sig/ont/fma/fma81246', 'children': [], 'synonymLabels': ['Branch of lateral pectoral nerve to sternocostal part of pectoralis major'], 'label': 'branch of lateral pectoral nerve to sternocostal part of pectoralis major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81333': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81333', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81333', 'parent': 'http://purl.org/sig/ont/fma/fma65293', 'children': [], 'synonymLabels': ['Branch of medial pectoral nerve to sternocostal part of pectoralis major'], 'label': 'branch of medial pectoral nerve to sternocostal part of pectoralis major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8135': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8135', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8135', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': ['Costal groove of eighth rib'], 'label': 'costal groove of eighth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81355': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81355', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81355', 'parent': 'http://purl.org/sig/ont/fma/fma65290', 'children': [], 'synonymLabels': ['Nerve to latissimus dorsi (1)'], 'label': 'branch of thoracodorsal nerve to latissimus dorsi (1)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81356': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81356', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81356', 'parent': 'http://purl.org/sig/ont/fma/fma65290', 'children': [], 'synonymLabels': ['Nerve to latissimus dorsi (2)'], 'label': 'branch of thoracodorsal nerve to latissimus dorsi (2)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81357': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81357', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81357', 'parent': 'http://purl.org/sig/ont/fma/fma65290', 'children': [], 'synonymLabels': ['Nerve to latissimus dorsi (n)'], 'label': 'branch of thoracodorsal nerve to latissimus dorsi (n)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81373': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81373', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81373', 'parent': 'http://purl.org/sig/ont/fma/fma65275', 'children': [], 'synonymLabels': ['Nerve to serratus anterior (1)'], 'label': 'branch of long thoracic nerve to serratus anterior (1)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81374': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81374', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81374', 'parent': 'http://purl.org/sig/ont/fma/fma65275', 'children': [], 'synonymLabels': ['Nerve to serratus anterior (2)'], 'label': 'branch of long thoracic nerve to serratus anterior (2)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma81375': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma81375', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma81375', 'parent': 'http://purl.org/sig/ont/fma/fma65275', 'children': [], 'synonymLabels': ['Nerve to serratus anterior (n)'], 'label': 'branch of long thoracic nerve to serratus anterior (n)'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82560': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82560', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82560', 'parent': 'http://purl.org/sig/ont/fma/fma53247', 'children': [], 'synonymLabels': ['Nerve proper to mylohyoid'], 'label': 'nerve proper to mylohyoid'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82561': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82561', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82561', 'parent': 'http://purl.org/sig/ont/fma/fma53247', 'children': [], 'synonymLabels': ['Branch of mylohyoid nerve to anterior belly of digastric'], 'label': 'branch of mylohyoid nerve to anterior belly of digastric'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82581': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82581', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82581', 'parent': 'http://purl.org/sig/ont/fma/fma6720', 'children': [], 'synonymLabels': ['Branch of spinal accessory nerve to trapezius'], 'label': 'trapezius branch of spinal accessory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82584': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82584', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82584', 'parent': 'http://purl.org/sig/ont/fma/fma6720', 'children': [], 'synonymLabels': ['Branch of spinal accessory nerve to sternocleidomastoid'], 'label': 'sternocleidomastoid branch of spinal accessory nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82603': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82603', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82603', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to auricularis anterior'], 'label': 'nerve to auricularis anterior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82607': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82607', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82607', 'parent': 'http://purl.org/sig/ont/fma/fma53282', 'children': [], 'synonymLabels': ['Nerve to transverse muscle of auricle'], 'label': 'nerve to transverse muscle of auricle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82610', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82610', 'parent': 'http://purl.org/sig/ont/fma/fma53282', 'children': [], 'synonymLabels': ['Nerve to oblique muscle of auricle'], 'label': 'nerve to oblique muscle of auricle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82613': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82613', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82613', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to antitragicus'], 'label': 'nerve to antitragicus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82616': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82616', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82616', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to tragicus'], 'label': 'nerve to tragicus'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82619', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82619', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to helicis major'], 'label': 'nerve to helicis major'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82622': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82622', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82622', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to helicis minor'], 'label': 'nerve to helicis minor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82625': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82625', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82625', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to superior longitudinal muscle of tongue'], 'label': 'nerve to superior longitudinal muscle of tongue'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82628', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82628', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to inferior longitudinal muscle of tongue'], 'label': 'nerve to inferior longitudinal muscle of tongue'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82631': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82631', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82631', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001650', 'children': [], 'synonymLabels': ['Nerve to transverse muscle of tongue'], 'label': 'nerve to transverse muscle of tongue'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82647', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Branch of marginal mandibular branch of facial nerve to orbicularis oris'], 'label': 'branch of marginal mandibular branch of facial nerve to orbicularis oris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82651': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82651', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82651', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Nerve to transversus menti'], 'label': 'nerve to transversus menti'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82654', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82654', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Nerve to depressor anguli oris'], 'label': 'nerve to depressor anguli oris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82657': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82657', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82657', 'parent': 'http://purl.org/sig/ont/fma/fma53365', 'children': [], 'synonymLabels': ['Nerve to depressor labii inferioris'], 'label': 'nerve to depressor labii inferioris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82660': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82660', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82660', 'parent': 'http://purl.org/sig/ont/fma/fma53339', 'children': [], 'synonymLabels': ['Nerve to levator anguli oris'], 'label': 'nerve to levator anguli oris'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82666': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82666', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82666', 'parent': 'http://purl.org/sig/ont/fma/fma53340', 'children': [], 'synonymLabels': ['Nerve to zygomaticus minor'], 'label': 'nerve to zygomaticus minor'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82669': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82669', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82669', 'parent': 'http://purl.org/sig/ont/fma/fma53339', 'children': [], 'synonymLabels': ['Nerve to levator labii superioris alaeque nasi'], 'label': 'nerve to levator labii superioris alaeque nasi'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82674': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82674', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82674', 'parent': 'http://purl.org/sig/ont/fma/fma53291', 'children': [], 'synonymLabels': ['Nerve to depressor supercilii'], 'label': 'nerve to depressor supercilii'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82706': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82706', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82706', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'children': ['http://purl.org/sig/ont/fma/fma15414'], 'synonymLabels': ['Caudate lobe branch of right portal vein'], 'label': 'right portal vein of caudate lobe'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82731': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82731', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82731', 'parent': 'http://purl.org/sig/ont/fma/fma53000', 'children': [], 'synonymLabels': ['Branch of auriculotemporal nerve to temporalis'], 'label': 'branch of auriculotemporal nerve to temporalis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82842': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82842', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82842', 'parent': 'http://purl.org/sig/ont/fma/fma53282', 'children': [], 'synonymLabels': ['Nerve to auricularis posterior'], 'label': 'nerve to auricularis posterior'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82921': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82921', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82921', 'parent': 'http://purl.org/sig/ont/fma/fma16482', 'children': [], 'synonymLabels': ['Branch of iliohypogastric nerve to internal oblique'], 'label': 'branch of iliohypogastric nerve to internal oblique'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82922': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82922', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82922', 'parent': 'http://purl.org/sig/ont/fma/fma16483', 'children': [], 'synonymLabels': ['Branch of ilioinguinal nerve to transversus abdominis'], 'label': 'branch of ilioinguinal nerve to transversus abdominis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82925': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82925', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82925', 'parent': 'http://purl.org/sig/ont/fma/fma16482', 'children': [], 'synonymLabels': ['Branch of iliohypogastric nerve to transversus abdominis'], 'label': 'branch of iliohypogastric nerve to transversus abdominis'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82942', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82942', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Compressor urethrae branch of perineal nerve'], 'label': 'compressor urethrae branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82945': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82945', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82945', 'parent': 'http://purl.org/sig/ont/fma/fma21866', 'children': [], 'synonymLabels': ['Sphincter urethrovaginalis branch of perineal nerve'], 'label': 'sphincter urethrovaginalis branch of perineal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma82970': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma82970', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma82970', 'parent': 'http://purl.org/sig/ont/fma/fma44699', 'children': [], 'synonymLabels': ['Communicating branch of superficial fibular nerve with sural nerve'], 'label': 'communicating branch of superficial fibular nerve with sural nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8338': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8338', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8338', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Head of ninth rib'], 'label': 'head of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8339': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8339', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8339', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Crest of head of ninth rib'], 'label': 'crest of head of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8341': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8341', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8341', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Superior articular facet of head of ninth rib'], 'label': 'superior articular facet of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8342': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8342', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8342', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Inferior articular facet of head of ninth rib'], 'label': 'inferior articular facet of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8343': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8343', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8343', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Neck of ninth rib'], 'label': 'neck of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8345': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8345', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8345', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Body of ninth rib'], 'label': 'body of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8346': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8346', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8346', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Tubercle of ninth rib'], 'label': 'tubercle of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8347': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8347', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8347', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Articular facet of tubercle of ninth rib'], 'label': 'articular facet of tubercle of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8349': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8349', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8349', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Angle of ninth rib'], 'label': 'angle of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8352': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8352', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8352', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': ['Costal groove of ninth rib'], 'label': 'costal groove of ninth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma83531': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma83531', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma83531', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002078', 'children': [], 'synonymLabels': ['Myocardium of right atrium'], 'label': 'myocardium'}),\n",
      "  'http://purl.org/sig/ont/fma/fma83532': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma83532', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma83532', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Myocardium of left atrium'], 'label': 'myocardium'}),\n",
      "  'http://purl.org/sig/ont/fma/fma83539': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma83539', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma83539', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002079', 'children': [], 'synonymLabels': ['Myocardium of interventricular septum'], 'label': 'myocardium'}),\n",
      "  'http://purl.org/sig/ont/fma/fma84175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma84175', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma84175', 'parent': 'http://purl.org/sig/ont/fma/fma81286', 'children': [], 'synonymLabels': ['Branch of axillary nerve to glenohumeral joint'], 'label': 'branch of axillary nerve to glenohumeral joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma84178': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma84178', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma84178', 'parent': 'http://purl.org/sig/ont/fma/fma81246', 'children': [], 'synonymLabels': ['Branch of lateral pectoral nerve to glenohumeral joint'], 'label': 'branch of lateral pectoral nerve to glenohumeral joint'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8419': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8419', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8419', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Head of tenth rib'], 'label': 'head of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8424': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8424', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8424', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Neck of tenth rib'], 'label': 'neck of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8426': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8426', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8426', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Body of tenth rib'], 'label': 'body of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8427': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8427', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8427', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Tubercle of tenth rib'], 'label': 'tubercle of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8428': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8428', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8428', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Articular facet of tubercle of tenth rib'], 'label': 'articular facet of tubercle of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8430': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8430', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8430', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Angle of tenth rib'], 'label': 'angle of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8433': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8433', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8433', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': ['Costal groove of tenth rib'], 'label': 'costal groove of tenth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8500': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8500', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8500', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004610', 'children': [], 'synonymLabels': ['Head of eleventh rib'], 'label': 'head of eleventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8501': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8501', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8501', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004610', 'children': [], 'synonymLabels': ['Body of eleventh rib'], 'label': 'body of eleventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8506': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8506', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8506', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004610', 'children': [], 'synonymLabels': ['Costal groove of eleventh rib'], 'label': 'costal groove of eleventh rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma85107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma85107', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma85107', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006564', 'children': ['http://purl.org/sig/ont/fma/fma23048', 'http://purl.org/sig/ont/fma/fma23046'], 'synonymLabels': ['Third common palmar digital artery'], 'label': 'third common palmar digital artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma85108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma85108', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma85108', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006564', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand', 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand'], 'synonymLabels': ['Fourth common palmar digital artery'], 'label': 'medial proper palmar digital artery of fifth digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma85111': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma85111', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma85111', 'parent': 'http://purl.org/sig/ont/fma/fma22855', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-third-digit-of-hand'], 'synonymLabels': ['Medial proper palmar digital artery of middle finger'], 'label': 'medial proper palmar digital artery of third digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma85114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma85114', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma85114', 'parent': 'http://purl.org/sig/ont/fma/fma22855', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fourth-digit-of-hand'], 'synonymLabels': ['Lateral proper palmar digital artery of ring finger'], 'label': 'lateral proper palmar digital artery of fourth digit of hand'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8516': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8516', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8516', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004611', 'children': [], 'synonymLabels': ['Head of twelfth rib'], 'label': 'head of twelfth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8517': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8517', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8517', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004611', 'children': [], 'synonymLabels': ['Body of twelfth rib'], 'label': 'body of twelfth rib'}),\n",
      "  'http://purl.org/sig/ont/fma/fma85528': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma85528', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma85528', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001616', 'children': [], 'synonymLabels': ['Artery of pterygoid canal'], 'label': 'artery of pterygoid canal'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8602': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8602', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8602', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Second intercostal nerve'], 'label': 'ventral ramus of second thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8603': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8603', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8603', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Third intercostal nerve'], 'label': 'ventral ramus of third thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8604': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8604', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8604', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Fourth intercostal nerve'], 'label': 'ventral ramus of fourth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8605': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8605', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8605', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Fifth intercostal nerve'], 'label': 'ventral ramus of fifth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8606': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8606', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8606', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Sixth intercostal nerve'], 'label': 'ventral ramus of sixth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8607': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8607', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8607', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Seventh intercostal nerve'], 'label': 'ventral ramus of seventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8608': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8608', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8608', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Eighth intercostal nerve'], 'label': 'ventral ramus of eighth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8609': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8609', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8609', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Ninth intercostal nerve'], 'label': 'ventral ramus of ninth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8610': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8610', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8610', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Tenth intercostal nerve'], 'label': 'ventral ramus of tenth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8611': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8611', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8611', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Eleventh intercostal nerve'], 'label': 'ventral ramus of eleventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8616': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8616', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8616', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001651', 'children': ['https://purl.org/ccf/ASCTB-TEMP_high-truncus-anterior-of-right-pulmonary-artery', 'http://purl.org/sig/ont/fma/fma8619'], 'synonymLabels': ['Trunk of right upper lobar artery'], 'label': 'truncus anterior of right pulmonary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8617': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8617', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8617', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_high-truncus-anterior-of-right-pulmonary-artery', 'children': [], 'synonymLabels': ['Right apical segmental artery'], 'label': 'apical segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8618': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8618', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8618', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001651', 'children': ['http://purl.org/sig/ont/fma/fma68847', 'http://purl.org/sig/ont/fma/fma68194', 'http://purl.org/sig/ont/fma/fma68193', 'http://purl.org/sig/ont/fma/fma8627'], 'synonymLabels': ['Interlobar portion of right pulmonary artery'], 'label': 'right interlobar pulmonary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8619', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8619', 'parent': 'http://purl.org/sig/ont/fma/fma8616', 'children': [], 'synonymLabels': ['Right posterior segmental artery'], 'label': 'posterior segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8620': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8620', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8620', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_high-truncus-anterior-of-right-pulmonary-artery', 'children': [], 'synonymLabels': ['Right anterior segmental artery'], 'label': 'anterior segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8627': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8627', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8627', 'parent': 'http://purl.org/sig/ont/fma/fma8618', 'children': [], 'synonymLabels': ['Right superior segmental artery'], 'label': 'superior segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8628': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8628', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8628', 'parent': 'http://purl.org/sig/ont/fma/fma68847', 'children': [], 'synonymLabels': ['Right medial basal segmental artery'], 'label': 'medial basal segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8630': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8630', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8630', 'parent': 'http://purl.org/sig/ont/fma/fma68847', 'children': [], 'synonymLabels': ['Right anterior basal segmental artery'], 'label': 'anterior basal segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8631': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8631', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8631', 'parent': 'http://purl.org/sig/ont/fma/fma68847', 'children': [], 'synonymLabels': ['Right lateral basal segmental artery'], 'label': 'lateral basal segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8632', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8632', 'parent': 'http://purl.org/sig/ont/fma/fma68847', 'children': [], 'synonymLabels': ['Right posterior basal segmental artery'], 'label': 'posterior basal segmental artery of right lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8639': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8639', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8639', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lingular-artery-of-left-lung', 'children': [], 'synonymLabels': ['Superior lingular artery'], 'label': 'superior lingular segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8640': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8640', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8640', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lingular-artery-of-left-lung', 'children': [], 'synonymLabels': ['Inferior lingular artery'], 'label': 'inferior lingular segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8642': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8642', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8642', 'parent': 'http://purl.org/sig/ont/fma/fma9284', 'children': [], 'synonymLabels': ['Left superior segmental artery'], 'label': 'superior segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8644', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8644', 'parent': 'http://purl.org/sig/ont/fma/fma68848', 'children': [], 'synonymLabels': ['Left medial basal segmental artery'], 'label': 'medial basal segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8645': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8645', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8645', 'parent': 'http://purl.org/sig/ont/fma/fma68848', 'children': [], 'synonymLabels': ['Left anterior basal segmental artery'], 'label': 'anterior basal segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8646', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8646', 'parent': 'http://purl.org/sig/ont/fma/fma68848', 'children': [], 'synonymLabels': ['Left lateral basal segmental artery'], 'label': 'lateral basal segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8647': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8647', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8647', 'parent': 'http://purl.org/sig/ont/fma/fma68848', 'children': [], 'synonymLabels': ['Left posterior basal segmental artery'], 'label': 'posterior basal segmental artery of left lung'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8724': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8724', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8724', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of eighth cervical nerve'], 'label': 'ventral ramus of eighth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8727': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8727', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8727', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of seventh cervical nerve'], 'label': 'ventral ramus of seventh cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8730': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8730', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8730', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of sixth cervical nerve'], 'label': 'ventral ramus of sixth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8733': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8733', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8733', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of fifth cervical nerve'], 'label': 'ventral ramus of fifth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8736': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8736', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8736', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of third cervical nerve'], 'label': 'ventral ramus of third cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8739': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8739', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8739', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of fourth cervical nerve'], 'label': 'ventral ramus of fourth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8755': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8755', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8755', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001652', 'children': ['http://purl.org/sig/ont/fma/fma9311'], 'synonymLabels': ['Segmental pulmonary artery'], 'label': 'segmental pulmonary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8764': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8764', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8764', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of second lumbar nerve'], 'label': 'ventral ramus of second lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8767': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8767', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8767', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of third lumbar nerve'], 'label': 'ventral ramus of third lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8770': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8770', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8770', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of fourth lumbar nerve'], 'label': 'ventral ramus of fourth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8773': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8773', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8773', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of fifth lumbar nerve'], 'label': 'ventral ramus of fifth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8776': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8776', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8776', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of second sacral nerve'], 'label': 'ventral ramus of second sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8779': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8779', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8779', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of third sacral nerve'], 'label': 'ventral ramus of third sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8782': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8782', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8782', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of fourth sacral nerve'], 'label': 'ventral ramus of fourth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8785': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8785', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8785', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006838', 'children': [], 'synonymLabels': ['Anterior ramus of fifth sacral nerve'], 'label': 'ventral ramus of fifth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8788': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8788', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8788', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of second cervical nerve'], 'label': 'dorsal ramus of second cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8789': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8789', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8789', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fourth cervical nerve'], 'label': 'dorsal ramus of fourth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8792': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8792', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8792', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of third cervical nerve'], 'label': 'dorsal ramus of third cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8793': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8793', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8793', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fifth cervical nerve'], 'label': 'dorsal ramus of fifth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8796': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8796', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8796', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of sixth cervical nerve'], 'label': 'dorsal ramus of sixth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8799': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8799', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8799', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of seventh cervical nerve'], 'label': 'dorsal ramus of seventh cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8802': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8802', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8802', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of eighth cervical nerve'], 'label': 'dorsal ramus of eighth cervical spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8806': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8806', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8806', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fifth thoracic nerve'], 'label': 'dorsal ramus of fifth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8809': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8809', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8809', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fourth thoracic nerve'], 'label': 'dorsal ramus of fourth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8810': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8810', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8810', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of sixth thoracic nerve'], 'label': 'dorsal ramus of sixth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8813': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8813', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8813', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of seventh thoracic nerve'], 'label': 'dorsal ramus of seventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8816': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8816', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8816', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of eighth thoracic nerve'], 'label': 'dorsal ramus of eighth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8819': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8819', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8819', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of ninth thoracic nerve'], 'label': 'dorsal ramus of ninth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8822': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8822', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8822', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of tenth thoracic nerve'], 'label': 'dorsal ramus of tenth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8825': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8825', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8825', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of eleventh thoracic nerve'], 'label': 'dorsal ramus of eleventh thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8828': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8828', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8828', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of twelfth thoracic nerve'], 'label': 'dorsal ramus of twelfth thoracic spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8831': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8831', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8831', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of second lumbar nerve'], 'label': 'dorsal ramus of second lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8834': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8834', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8834', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of third lumbar nerve'], 'label': 'dorsal ramus of third lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8837': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8837', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8837', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fourth lumbar nerve'], 'label': 'dorsal ramus of fourth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8840', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8840', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fifth lumbar nerve'], 'label': 'dorsal ramus of fifth lumbar spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8843': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8843', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8843', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of second sacral nerve'], 'label': 'dorsal ramus of second sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8846': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8846', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8846', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of third sacral nerve'], 'label': 'dorsal ramus of third sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8849', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8849', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fourth sacral nerve'], 'label': 'dorsal ramus of fourth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8852': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8852', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8852', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of fifth sacral nerve'], 'label': 'dorsal ramus of fifth sacral spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma8855': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma8855', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma8855', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006839', 'children': [], 'synonymLabels': ['Posterior ramus of coccygeal nerve'], 'label': 'dorsal ramus of coccygeal spinal nerve'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9171', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9171', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Superior costal facet of body of first thoracic vertebra'], 'label': 'superior costal facet of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9172': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9172', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9172', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Inferior costal facet of body of first thoracic vertebra'], 'label': 'inferior costal facet of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9175', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9175', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Pedicle of first thoracic vertebra'], 'label': 'pedicle of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9176': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9176', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9176', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Superior vertebral notch of first thoracic vertebra'], 'label': 'superior vertebral notch of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9177': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9177', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9177', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Inferior vertebral notch of first thoracic vertebra'], 'label': 'inferior vertebral notch of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9178': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9178', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9178', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Lamina of first thoracic vertebra'], 'label': 'lamina of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9179': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9179', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9179', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Spinous process of first thoracic vertebra'], 'label': 'spinous process of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9180': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9180', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9180', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Transverse process of first thoracic vertebra'], 'label': 'transverse process of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9182', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9182', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Superior articular process of first thoracic vertebra'], 'label': 'superior articular process of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9183', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9183', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': ['Inferior articular process of first thoracic vertebra'], 'label': 'inferior articular process of first thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9192', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9192', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Superior costal facet of body of second thoracic vertebra'], 'label': 'superior costal facet of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9193', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9193', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Inferior costal facet of body of second thoracic vertebra'], 'label': 'inferior costal facet of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9197': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9197', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9197', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Pedicle of second thoracic vertebra'], 'label': 'pedicle of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9198', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9198', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Superior vertebral notch of second thoracic vertebra'], 'label': 'superior vertebral notch of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9199', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9199', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Inferior vertebral notch of second thoracic vertebra'], 'label': 'inferior vertebral notch of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9200', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9200', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Lamina of second thoracic vertebra'], 'label': 'lamina of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9201': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9201', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9201', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Spinous process of second thoracic vertebra'], 'label': 'spinous process of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9202', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9202', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Transverse process of second thoracic vertebra'], 'label': 'transverse process of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9205': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9205', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9205', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Superior articular process of second thoracic vertebra'], 'label': 'superior articular process of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9207': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9207', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9207', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': ['Inferior articular process of second thoracic vertebra'], 'label': 'inferior articular process of second thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9214': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9214', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9214', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Superior costal facet of body of third thoracic vertebra'], 'label': 'superior costal facet of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9215', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9215', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Inferior costal facet of body of third thoracic vertebra'], 'label': 'inferior costal facet of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9219': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9219', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9219', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Pedicle of third thoracic vertebra'], 'label': 'pedicle of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9220': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9220', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9220', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Superior vertebral notch of third thoracic vertebra'], 'label': 'superior vertebral notch of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9221': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9221', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9221', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Inferior vertebral notch of third thoracic vertebra'], 'label': 'inferior vertebral notch of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9222', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9222', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Lamina of third thoracic vertebra'], 'label': 'lamina of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9223': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9223', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9223', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Spinous process of third thoracic vertebra'], 'label': 'spinous process of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9224': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9224', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9224', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Transverse process of third thoracic vertebra'], 'label': 'transverse process of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9227': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9227', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9227', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Superior articular process of third thoracic vertebra'], 'label': 'superior articular process of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9229': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9229', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9229', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': ['Inferior articular process of third thoracic vertebra'], 'label': 'inferior articular process of third thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9253', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9253', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Superior costal facet of body of fourth thoracic vertebra'], 'label': 'superior costal facet of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9254', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9254', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Inferior costal facet of body of fourth thoracic vertebra'], 'label': 'inferior costal facet of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9258': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9258', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9258', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Pedicle of fourth thoracic vertebra'], 'label': 'pedicle of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9259': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9259', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9259', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Superior vertebral notch of fourth thoracic vertebra'], 'label': 'superior vertebral notch of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9260': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9260', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9260', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Inferior vertebral notch of fourth thoracic vertebra'], 'label': 'inferior vertebral notch of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9261', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9261', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Lamina of fourth thoracic vertebra'], 'label': 'lamina of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9262': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9262', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9262', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Spinous process of fourth thoracic vertebra'], 'label': 'spinous process of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9263': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9263', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9263', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Transverse process of fourth thoracic vertebra'], 'label': 'transverse process of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9266': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9266', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9266', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Superior articular process of fourth thoracic vertebra'], 'label': 'superior articular process of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9268': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9268', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9268', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': ['Inferior articular process of fourth thoracic vertebra'], 'label': 'inferior articular process of fourth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9284': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9284', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9284', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001652', 'children': ['http://purl.org/sig/ont/fma/fma68848', 'https://purl.org/ccf/ASCTB-TEMP_lingular-artery-of-left-lung', 'http://purl.org/sig/ont/fma/fma8642'], 'synonymLabels': ['Interlobar portion of left pulmonary artery'], 'label': 'left interlobar pulmonary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9311': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9311', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9311', 'parent': 'http://purl.org/sig/ont/fma/fma8755', 'children': ['http://purl.org/sig/ont/fma/fma279896'], 'synonymLabels': ['Subsegmental pulmonary artery'], 'label': 'subsegmental pulmonary artery'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9413': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9413', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9413', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014904', 'children': ['https://purl.org/ccf/ASCTB-TEMP_pulmonary-venule'], 'synonymLabels': ['Subsegmental pulmonary vein'], 'label': 'subsegmental pulmonary vein'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9535': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9535', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9535', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002080', 'children': [], 'synonymLabels': ['Myocardium of right ventricle'], 'label': 'myocardium'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9585': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9585', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9585', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': ['Bronchomediastinal lymphatic trunk'], 'label': 'bronchomediastinal lymph trunk'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9760': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9760', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9760', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'children': [], 'synonymLabels': ['Transversus thoracis'], 'label': 'transversus thoracis muscle'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9927': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9927', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9927', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Superior costal facet of body of fifth thoracic vertebra'], 'label': 'superior costal facet of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9928': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9928', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9928', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Inferior costal facet of body of fifth thoracic vertebra'], 'label': 'inferior costal facet of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9932': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9932', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9932', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Pedicle of fifth thoracic vertebra'], 'label': 'pedicle of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9933': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9933', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9933', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Superior vertebral notch of fifth thoracic vertebra'], 'label': 'superior vertebral notch of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9934': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9934', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9934', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Inferior vertebral notch of fifth thoracic vertebra'], 'label': 'inferior vertebral notch of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9935': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9935', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9935', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Lamina of fifth thoracic vertebra'], 'label': 'lamina of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9936': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9936', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9936', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Spinous process of fifth thoracic vertebra'], 'label': 'spinous process of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9937': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9937', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9937', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Transverse process of fifth thoracic vertebra'], 'label': 'transverse process of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9940': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9940', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9940', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Superior articular process of fifth thoracic vertebra'], 'label': 'superior articular process of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9942', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9942', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': ['Inferior articular process of fifth thoracic vertebra'], 'label': 'inferior articular process of fifth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9950': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9950', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9950', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Superior costal facet of body of sixth thoracic vertebra'], 'label': 'superior costal facet of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9951': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9951', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9951', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Inferior costal facet of body of sixth thoracic vertebra'], 'label': 'inferior costal facet of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9955': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9955', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9955', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Pedicle of sixth thoracic vertebra'], 'label': 'pedicle of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9956': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9956', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9956', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Superior vertebral notch of sixth thoracic vertebra'], 'label': 'superior vertebral notch of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9957': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9957', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9957', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Inferior vertebral notch of sixth thoracic vertebra'], 'label': 'inferior vertebral notch of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9958': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9958', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9958', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Lamina of sixth thoracic vertebra'], 'label': 'lamina of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9959': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9959', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9959', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Spinous process of sixth thoracic vertebra'], 'label': 'spinous process of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9960': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9960', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9960', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Transverse process of sixth thoracic vertebra'], 'label': 'transverse process of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9963': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9963', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9963', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Superior articular process of sixth thoracic vertebra'], 'label': 'superior articular process of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9965': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9965', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9965', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': ['Inferior articular process of sixth thoracic vertebra'], 'label': 'inferior articular process of sixth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9973': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9973', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9973', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Superior costal facet of body of seventh thoracic vertebra'], 'label': 'superior costal facet of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9974': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9974', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9974', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Inferior costal facet of body of seventh thoracic vertebra'], 'label': 'inferior costal facet of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9978': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9978', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9978', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Pedicle of seventh thoracic vertebra'], 'label': 'pedicle of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9979': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9979', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9979', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Superior vertebral notch of seventh thoracic vertebra'], 'label': 'superior vertebral notch of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9980': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9980', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9980', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Inferior vertebral notch of seventh thoracic vertebra'], 'label': 'inferior vertebral notch of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9981': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9981', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9981', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Lamina of seventh thoracic vertebra'], 'label': 'lamina of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9982': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9982', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9982', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Spinous process of seventh thoracic vertebra'], 'label': 'spinous process of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9983': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9983', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9983', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Transverse process of seventh thoracic vertebra'], 'label': 'transverse process of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9986': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9986', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9986', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Superior articular process of seventh thoracic vertebra'], 'label': 'superior articular process of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9988': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9988', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9988', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': ['Inferior articular process of seventh thoracic vertebra'], 'label': 'inferior articular process of seventh thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9996': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9996', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9996', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Superior costal facet of body of eighth thoracic vertebra'], 'label': 'superior costal facet of eighth thoracic vertebra'}),\n",
      "  'http://purl.org/sig/ont/fma/fma9997': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.org/sig/ont/fma/fma9997', '@type': 'OntologyTreeNode', 'id': 'http://purl.org/sig/ont/fma/fma9997', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': ['Inferior costal facet of body of eighth thoracic vertebra'], 'label': 'inferior costal facet of eighth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_acetabular-fossa-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_acetabular-fossa-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_acetabular-fossa-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'acetabular fossa of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_acetabular-notch-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_acetabular-notch-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_acetabular-notch-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'acetabular notch of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_acetabulum-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_acetabulum-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_acetabulum-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'acetabulum of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_acromial-process-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_acromial-process-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_acromial-process-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'acromial process of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_alae-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_alae-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_alae-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'alae of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_alveolar-border-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_alveolar-border-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_alveolar-border-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'alveolar border of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_alveolar-capillary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_alveolar-capillary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_alveolar-capillary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pre-alveolar-capillary', 'children': [], 'synonymLabels': [], 'label': 'alveolar capillary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_amygdaloid-complex': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_amygdaloid-complex', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_amygdaloid-complex', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': [], 'synonymLabels': [], 'label': 'amygdaloid complex'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-accessory-saphenous-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-accessory-saphenous-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-accessory-saphenous-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': [], 'label': 'anterior accessory saphenous vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-arch-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-arch-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-arch-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'anterior arch of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-branch-of-retromandibular-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-branch-of-retromandibular-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-branch-of-retromandibular-vein', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_common-facial-vein', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001656'], 'synonymLabels': [], 'label': 'anterior branch of retromandibular vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-cervical-intertransversarii-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-cervical-intertransversarii-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-cervical-intertransversarii-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': [], 'label': 'anterior cervical intertransversarii muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-clinoid-process-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-clinoid-process-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-clinoid-process-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'anterior clinoid process of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-ethmoidal-foramen-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-ethmoidal-foramen-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-ethmoidal-foramen-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'anterior ethmoidal foramen of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-gluteal-line-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-gluteal-line-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-gluteal-line-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'anterior gluteal line of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-inferior-iliac-spine-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-inferior-iliac-spine-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-inferior-iliac-spine-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'anterior inferior iliac spine of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-internal-frontal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-internal-frontal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-internal-frontal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'anterior internal frontal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-interosseous-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-interosseous-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-interosseous-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel'], 'synonymLabels': [], 'label': 'anterior interosseous lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-lymph-trunk-of-accompanying-suprarenal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-lymph-trunk-of-accompanying-suprarenal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-lymph-trunk-of-accompanying-suprarenal-vein', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': [], 'label': 'anterior lymph trunk of accompanying suprarenal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-radicular-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-radicular-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-radicular-vein', 'parent': 'http://purl.org/sig/ont/fma/fma76736', 'children': ['http://purl.org/sig/ont/fma/fma70892'], 'synonymLabels': [], 'label': 'anterior radicular vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-sacral-foramina-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-sacral-foramina-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-sacral-foramina-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'anterior sacral foramina of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-segmental-medullary-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-segmental-medullary-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-segmental-medullary-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery', 'children': [], 'synonymLabels': [], 'label': 'anterior segmental medullary artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-superior-iliac-spine-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-superior-iliac-spine-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-superior-iliac-spine-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'anterior superior iliac spine of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-tubercle-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-tubercle-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-tubercle-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'anterior tubercle of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['https://purl.org/ccf/ASCTB-TEMP_longus-capitus-muscle', 'http://purl.obolibrary.org/obo/UBERON_0003250', 'https://purl.org/ccf/ASCTB-TEMP_rectus-capitus-anterior-muscle'], 'synonymLabels': [], 'label': 'anterior vertebral muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_anterolateral-tubercle-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_anterolateral-tubercle-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_anterolateral-tubercle-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'anterolateral tubercle of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_antral-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dominance-antral-follicle', 'https://purl.org/ccf/ASCTB-TEMP_early-antral-follicle', 'http://purl.obolibrary.org/obo/UBERON_0003982', 'https://purl.org/ccf/ASCTB-TEMP_pre-selection-antral-follicle', 'https://purl.org/ccf/ASCTB-TEMP_selection-antral-follicle'], 'synonymLabels': [], 'label': 'antral follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_apicoanterior-trunk-of-left-pulmonary-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_apicoanterior-trunk-of-left-pulmonary-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_apicoanterior-trunk-of-left-pulmonary-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001652', 'children': ['http://purl.org/sig/ont/fma/fma13279', 'http://purl.org/sig/ont/fma/fma13281'], 'synonymLabels': [], 'label': 'apicoanterior trunk of left pulmonary artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_arcuate-line-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_arcuate-line-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_arcuate-line-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'arcuate line of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_arterial-capillary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_arterial-capillary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_arterial-capillary', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001250', 'children': [], 'synonymLabels': [], 'label': 'arterial capillary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_articular-surface-for-cuboid-bone-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_articular-surface-for-cuboid-bone-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_articular-surface-for-cuboid-bone-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'articular surface for cuboid bone of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_articular-tubercle-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_articular-tubercle-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_articular-tubercle-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'articular tubercle of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_articularis-genu-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_articularis-genu-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_articularis-genu-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma22424', 'children': [], 'synonymLabels': [], 'label': 'articularis genu muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_aryepiglottic-part-of-oblique-arytenoid-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_aryepiglottic-part-of-oblique-arytenoid-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_aryepiglottic-part-of-oblique-arytenoid-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma46583', 'children': [], 'synonymLabels': [], 'label': 'aryepiglottic part of oblique arytenoid muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_atrium-of-lateral-ventricle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_atrium-of-lateral-ventricle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_atrium-of-lateral-ventricle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002285', 'children': [], 'synonymLabels': [], 'label': 'atrium of lateral ventricle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_auricular-surface-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_auricular-surface-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_auricular-surface-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'auricular surface of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-foot', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004315', 'children': [], 'synonymLabels': [], 'label': 'base of first distal phalanx of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004337', 'children': [], 'synonymLabels': [], 'label': 'base of first distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-foot', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004332', 'children': [], 'synonymLabels': [], 'label': 'base of first proximal phalanx of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_base-of-first-proximal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004338', 'children': [], 'synonymLabels': [], 'label': 'base of first proximal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla', 'children': [], 'synonymLabels': [], 'label': 'basement membrane of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum', 'children': [], 'synonymLabels': [], 'label': 'basement membrane of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment', 'children': [], 'synonymLabels': [], 'label': 'basement membrane of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus', 'children': [], 'synonymLabels': [], 'label': 'basement membrane of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_body-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'body of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_body-of-hippocampus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-hippocampus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-hippocampus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002421', 'children': [], 'synonymLabels': [], 'label': 'body of hippocampus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_body-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'body of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_body-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_body-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'body of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_mucosal-arteriole-of-colon', 'children': [], 'synonymLabels': [], 'label': 'branch of mucous plexus of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-small-intestine': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-small-intestine', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-small-intestine', 'parent': 'http://purl.org/sig/ont/fma/fma264945', 'children': [], 'synonymLabels': [], 'label': 'branch of mucous plexus of small intestine'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_branch-of-subpapillary-plexus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-subpapillary-plexus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-subpapillary-plexus', 'parent': 'http://purl.org/sig/ont/fma/fma280962', 'children': [], 'synonymLabels': [], 'label': 'branch of subpapillary plexus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_branch-of-superficial-white-pulp-capillary-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-superficial-white-pulp-capillary-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_branch-of-superficial-white-pulp-capillary-of-spleen', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-white-pulp-capillary-of-spleen', 'children': [], 'synonymLabels': [], 'label': 'branch of superficial white pulp capillary of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bronchial-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-arteriole', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002040', 'children': ['https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary'], 'synonymLabels': [], 'label': 'bronchial arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-arteriole', 'children': [], 'synonymLabels': [], 'label': 'bronchial capillary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pulmonary-venule', 'children': [], 'synonymLabels': [], 'label': 'bronchial capillary #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bronchial-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bronchial-venule', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001592', 'children': [], 'synonymLabels': [], 'label': 'bronchial venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bulbar-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bulbar-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bulbar-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018252', 'children': [], 'synonymLabels': [], 'label': 'bulbar vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bulbourethral-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bulbourethral-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bulbourethral-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008320', 'children': [], 'synonymLabels': [], 'label': 'bulbourethral artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_calcaneal-sulcus-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_calcaneal-sulcus-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_calcaneal-sulcus-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'calcaneal sulcus of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_calcaneal-tuberosity-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_calcaneal-tuberosity-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_calcaneal-tuberosity-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'calcaneal tuberosity of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_capillary-plexus-of-posterior-pituitary-gland': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_capillary-plexus-of-posterior-pituitary-gland', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_capillary-plexus-of-posterior-pituitary-gland', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035492', 'children': ['http://purl.org/sig/ont/fma/fma0327576'], 'synonymLabels': [], 'label': 'capillary plexus of posterior pituitary gland'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_carotid-canal-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_carotid-canal-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_carotid-canal-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'carotid canal of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cavernosal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cavernosal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cavernosal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0008320', 'children': [], 'synonymLabels': [], 'label': 'cavernosal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cell-island': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cell-island', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cell-island', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004027', 'children': [], 'synonymLabels': [], 'label': 'cell island'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-anterior-body-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-body-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-body-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001296'], 'synonymLabels': [], 'label': 'central anterior body of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-anterior-fundus-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-fundus-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-fundus-of-uterus', 'parent': 'http://purl.org/sig/ont/fma/fma17561', 'children': [], 'synonymLabels': [], 'label': 'central anterior fundus of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-anterior-lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-anterior-lower-uterine-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'children': [], 'synonymLabels': [], 'label': 'central anterior lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-arteries': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-arteries', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-arteries', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'children': [], 'synonymLabels': [], 'label': 'central arteries'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-ovary', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004911', 'https://purl.org/ccf/ASCTB-TEMP_ovarian-corticomedullary-junction', 'http://purl.obolibrary.org/obo/UBERON_0006644'], 'synonymLabels': [], 'label': 'central inferior antimesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-inferior-mesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-mesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-mesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-ovary', 'children': [], 'synonymLabels': [], 'label': 'central inferior mesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-inferior-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary', 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-mesenteric-ovary'], 'synonymLabels': [], 'label': 'central inferior ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-ovary', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-inferior-ovary', 'https://purl.org/ccf/ASCTB-TEMP_central-superior-ovary'], 'synonymLabels': [], 'label': 'central ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-posterior-body-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-body-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-body-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015173'], 'synonymLabels': [], 'label': 'central posterior body of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-posterior-fundus-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-fundus-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-fundus-of-uterus', 'parent': 'http://purl.org/sig/ont/fma/fma17561', 'children': [], 'synonymLabels': [], 'label': 'central posterior fundus of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-posterior-lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-lower-uterine-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'children': [], 'synonymLabels': [], 'label': 'central posterior lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-superior-antimesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-antimesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-antimesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-ovary', 'children': [], 'synonymLabels': [], 'label': 'central superior antimesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-superior-mesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-mesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-mesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-ovary', 'children': [], 'synonymLabels': [], 'label': 'central superior mesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_central-superior-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_central-superior-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-superior-antimesenteric-ovary', 'https://purl.org/ccf/ASCTB-TEMP_central-superior-mesenteric-ovary'], 'synonymLabels': [], 'label': 'central superior ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ceratoglossus-of-hyoglossus-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ceratoglossus-of-hyoglossus-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ceratoglossus-of-hyoglossus-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001572', 'children': [], 'synonymLabels': [], 'label': 'ceratoglossus of hyoglossus muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervical-mucosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervical-mucosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervical-mucosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': [], 'synonymLabels': [], 'label': 'cervical mucosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervical-os': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervical-os', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervical-os', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': [], 'synonymLabels': [], 'label': 'cervical os'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervical-squamo-columnar-junction': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervical-squamo-columnar-junction', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervical-squamo-columnar-junction', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000002', 'children': [], 'synonymLabels': [], 'label': 'cervical squamo-columnar junction'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_chondroglossus-of-hyoglossus-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_chondroglossus-of-hyoglossus-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_chondroglossus-of-hyoglossus-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001572', 'children': [], 'synonymLabels': [], 'label': 'chondroglossus of hyoglossus muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorion-': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorion-', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorion-', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003124', 'children': [], 'synonymLabels': [], 'label': 'chorionic ectoderm (from chorion)'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorionic-plate-': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorionic-plate-', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-ectoderm-from-chorionic-plate-', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004027', 'children': [], 'synonymLabels': [], 'label': 'chorionic ectoderm (from chorionic plate)'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_chorionic-mesoderm': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-mesoderm', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_chorionic-mesoderm', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003124', 'children': ['http://purl.obolibrary.org/obo/UBERON_8600021'], 'synonymLabels': [], 'label': 'chorionic mesoderm'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cingulate-gyrus-retrospleninal-part': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cingulate-gyrus-retrospleninal-part', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cingulate-gyrus-retrospleninal-part', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002967', 'children': [], 'synonymLabels': [], 'label': 'cingulate gyrus, retrospleninal part'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_circular-longitudinal-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_circular-longitudinal-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_circular-longitudinal-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-externa', 'children': [], 'synonymLabels': [], 'label': 'circular/longitudinal muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_circular-pharyngeal-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.org/sig/ont/fma/fma46623', 'http://purl.org/sig/ont/fma/fma46622', 'http://purl.org/sig/ont/fma/fma46621'], 'synonymLabels': [], 'label': 'circular pharyngeal muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_circumflex-humeral-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_circumflex-humeral-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_circumflex-humeral-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000985', 'children': [], 'synonymLabels': [], 'label': 'circumflex humeral vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_circumflex-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_circumflex-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_circumflex-lymphatic-channel', 'parent': 'http://purl.org/sig/ont/fma/fma14187', 'children': [], 'synonymLabels': [], 'label': 'circumflex lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_clavicular-head-of-pectoralis-major-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_clavicular-head-of-pectoralis-major-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_clavicular-head-of-pectoralis-major-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002381', 'children': [], 'synonymLabels': [], 'label': 'clavicular head of pectoralis major muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_coccygeal-cornu-of-coccyx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_coccygeal-cornu-of-coccyx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_coccygeal-cornu-of-coccyx', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001350', 'children': [], 'synonymLabels': [], 'label': 'coccygeal cornu of coccyx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_collecting-lymph-trunk-of-lymphatics-of-soft-parts-covering-posterior-thoracic-wall': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_collecting-lymph-trunk-of-lymphatics-of-soft-parts-covering-posterior-thoracic-wall', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_collecting-lymph-trunk-of-lymphatics-of-soft-parts-covering-posterior-thoracic-wall', 'parent': 'http://purl.org/sig/ont/fma/fma276805', 'children': [], 'synonymLabels': [], 'label': 'collecting lymph trunk of lymphatics of soft parts covering posterior thoracic wall'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_columnar-cell-of-endocervix': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_columnar-cell-of-endocervix', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_columnar-cell-of-endocervix', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000458', 'children': [], 'synonymLabels': [], 'label': 'columnar cell of endocervix'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_common-facial-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_common-facial-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_common-facial-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001586', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-branch-of-retromandibular-vein'], 'synonymLabels': [], 'label': 'common facial vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_conjuctival-epithelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_conjuctival-epithelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_conjuctival-epithelium', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001811', 'children': [], 'synonymLabels': [], 'label': 'conjuctival epithelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_connective-tissue': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_connective-tissue', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_connective-tissue', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004641', 'children': [], 'synonymLabels': [], 'label': 'connective tissue'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_connective-tissue-of-the-uterine-serosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_connective-tissue-of-the-uterine-serosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_connective-tissue-of-the-uterine-serosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001297', 'children': [], 'synonymLabels': [], 'label': 'connective tissue of the uterine serosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_corona-radiata': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_corona-radiata', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_corona-radiata', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005170', 'children': [], 'synonymLabels': [], 'label': 'corona radiata'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_coronoid-fossa-of-humerus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_coronoid-fossa-of-humerus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_coronoid-fossa-of-humerus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': [], 'label': 'coronoid fossa of humerus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-lutein-layer': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-lutein-layer', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-lutein-layer', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002512', 'children': [], 'synonymLabels': [], 'label': 'corpus luteum granulosa lutein layer'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-theca-layer': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-theca-layer', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-granulosa-theca-layer', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002512', 'children': [], 'synonymLabels': [], 'label': 'corpus luteum granulosa theca layer'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cortical-blood-vessels': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cortical-blood-vessels', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cortical-blood-vessels', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013191', 'children': [], 'synonymLabels': [], 'label': 'cortical blood vessels'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'costal groove of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-twelfth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-twelfth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_costal-groove-of-twelfth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004611', 'children': [], 'synonymLabels': [], 'label': 'costal groove of twelfth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_costal-notches-of-sternum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_costal-notches-of-sternum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_costal-notches-of-sternum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': [], 'label': 'costal notches of sternum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_costal-part-of-respiratory-diaphragm-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_costal-part-of-respiratory-diaphragm-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_costal-part-of-respiratory-diaphragm-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle', 'children': [], 'synonymLabels': [], 'label': 'costal part of respiratory diaphragm muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_costal-region-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014477', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004601', 'http://purl.obolibrary.org/obo/UBERON_0004609', 'http://purl.obolibrary.org/obo/UBERON_0004610', 'http://purl.obolibrary.org/obo/UBERON_0004611', 'http://purl.obolibrary.org/obo/UBERON_0004602', 'http://purl.obolibrary.org/obo/UBERON_0004603', 'http://purl.obolibrary.org/obo/UBERON_0004604', 'http://purl.obolibrary.org/obo/UBERON_0004605', 'http://purl.obolibrary.org/obo/UBERON_0004606', 'http://purl.obolibrary.org/obo/UBERON_0004607', 'http://purl.obolibrary.org/obo/UBERON_0010757', 'http://purl.obolibrary.org/obo/UBERON_0004608'], 'synonymLabels': [], 'label': 'costal region bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cribiform-plate-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cribiform-plate-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cribiform-plate-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'cribiform plate of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_crista-galla-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_crista-galla-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_crista-galla-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'crista galla of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cubital-fossa-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cubital-fossa-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cubital-fossa-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma234924', 'children': ['https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel'], 'synonymLabels': [], 'label': 'cubital fossa lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cumulus-oophorus-oocyte-complex': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cumulus-oophorus-oocyte-complex', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cumulus-oophorus-oocyte-complex', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003982', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001306'], 'synonymLabels': [], 'label': 'cumulus oophorus oocyte complex'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cutaneous-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-arteriole', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand', 'children': ['http://purl.org/sig/ont/fma/fma280962'], 'synonymLabels': [], 'label': 'cutaneous arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma85108', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cutaneous-arteriole'], 'synonymLabels': [], 'label': 'cutaneous branch of medial proper palmar digital artery of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-vein-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-vein-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-vein-of-fifth-digit-of-hand', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-vein-of-fifth-digit-of-hand', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cutaneous-venule'], 'synonymLabels': [], 'label': 'cutaneous branch of medial proper palmar digital vein of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cutaneous-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-venule', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-vein-of-fifth-digit-of-hand', 'children': [], 'synonymLabels': [], 'label': 'cutaneous venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_deep-lymph-node-of-neck': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_deep-lymph-node-of-neck', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_deep-lymph-node-of-neck', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-extrathoracic-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_supraspinatus-fossa-lymph-node'], 'synonymLabels': [], 'label': 'deep lymph node of neck'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_cubital-fossa-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-4', 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-2'], 'synonymLabels': [], 'label': 'deep radial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-2', 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-2'], 'synonymLabels': [], 'label': 'deep ulnar lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_digastric-fossa-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_digastric-fossa-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_digastric-fossa-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'digastric fossa of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dominance-antral-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dominance-antral-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dominance-antral-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'children': [], 'synonymLabels': [], 'label': 'dominance antral follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fifth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma23048', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of lateral proper palmar digital artery of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fourth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fourth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-fourth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma85114', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of lateral proper palmar digital artery of fourth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-second-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-second-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-second-digit-of-hand', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-second-digit-of-hand', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of lateral proper palmar digital artery of second digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-third-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-third-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-third-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma22857', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of lateral proper palmar digital artery of third digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fifth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma85108', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of medial proper palmar digital artery of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fourth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fourth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-fourth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma23046', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of medial proper palmar digital artery of fourth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-second-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-second-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-second-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma23047', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of medial proper palmar digital artery of second digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-third-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-third-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-medial-proper-palmar-digital-artery-of-third-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma85111', 'children': [], 'synonymLabels': [], 'label': 'dorsal branch of medial proper palmar digital artery of third digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-digital-artery-of-first-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-digital-artery-of-first-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-digital-artery-of-first-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma22761', 'children': [], 'synonymLabels': [], 'label': 'dorsal digital artery of first digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-meningeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-meningeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-meningeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_meningohypophyseal-artery', 'children': [], 'synonymLabels': [], 'label': 'dorsal meningeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsal-part-of-intertransversarii-laterales-lumborum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-part-of-intertransversarii-laterales-lumborum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsal-part-of-intertransversarii-laterales-lumborum-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intertransversarii-laterales-lumborum-muscle', 'children': [], 'synonymLabels': [], 'label': 'dorsal part of intertransversarii laterales lumborum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsum-of-foot-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsum-of-foot-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsum-of-foot-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000372', 'http://purl.org/sig/ont/fma/fma51141'], 'synonymLabels': [], 'label': 'dorsum of foot muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dorsum-sellae-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dorsum-sellae-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dorsum-sellae-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'dorsum sellae of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dural-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dural-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dural-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001532', 'children': [], 'synonymLabels': [], 'label': 'dural artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_early-antral-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_early-antral-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_early-antral-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'children': [], 'synonymLabels': [], 'label': 'early antral follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ectocervical-epithelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ectocervical-epithelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ectocervical-epithelium', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012249', 'children': [], 'synonymLabels': [], 'label': 'ectocervical epithelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ectocervical-stroma': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ectocervical-stroma', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ectocervical-stroma', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012249', 'children': [], 'synonymLabels': [], 'label': 'ectocervical stroma'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-fifth-or-sixth-lowermost-intercostal-spaces': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-fifth-or-sixth-lowermost-intercostal-spaces', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-fifth-or-sixth-lowermost-intercostal-spaces', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': [], 'label': 'efferent lymphatics from fifth or sixth lowermost intercostal spaces'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-third-fourth-and-fifth-intercostal-spaces': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-third-fourth-and-fifth-intercostal-spaces', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_efferent-lymphatics-from-third-fourth-and-fifth-intercostal-spaces', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': [], 'label': 'efferent lymphatics from third, fourth, and fifth intercostal spaces'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_endocervical-stroma': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_endocervical-stroma', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_endocervical-stroma', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000458', 'children': [], 'synonymLabels': [], 'label': 'endocervical stroma'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_endoethlial': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_endoethlial', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_endoethlial', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003332', 'children': [], 'synonymLabels': [], 'label': 'endoethlial'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_epithelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_epithelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_epithelium', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_mucosa', 'children': [], 'synonymLabels': [], 'label': 'epithelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymphatic-pathway-of-upper-arm', 'children': ['https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel'], 'synonymLabels': [], 'label': 'epitrochlear lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node-2', 'parent': 'http://purl.org/sig/ont/fma/fma234924', 'children': [], 'synonymLabels': [], 'label': 'epitrochlear lymph node #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-air-cells-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-air-cells-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-air-cells-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'ethmoidal air cells of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-bulla-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-bulla-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ethmoidal-bulla-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'ethmoidal bulla of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_eustachian-branch-of-ascending-pharyngeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_eustachian-branch-of-ascending-pharyngeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_eustachian-branch-of-ascending-pharyngeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk', 'children': [], 'synonymLabels': [], 'label': 'eustachian branch of ascending pharyngeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_external-anal-sphincter-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': ['http://purl.org/sig/ont/fma/fma27292', 'http://purl.org/sig/ont/fma/fma27286', 'http://purl.org/sig/ont/fma/fma27287'], 'synonymLabels': [], 'label': 'external anal sphincter muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_external-auditory-meatus-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_external-auditory-meatus-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_external-auditory-meatus-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'external auditory meatus of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_external-cervical-os': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_external-cervical-os', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_external-cervical-os', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012249', 'children': [], 'synonymLabels': [], 'label': 'external cervical os'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_external-ear-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.org/sig/ont/fma/fma46856', 'http://purl.org/sig/ont/fma/fma48962', 'http://purl.org/sig/ont/fma/fma46855', 'http://purl.org/sig/ont/fma/fma46753'], 'synonymLabels': [], 'label': 'external ear muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_external-occipital-protuberance-of-squamous-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_external-occipital-protuberance-of-squamous-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_external-occipital-protuberance-of-squamous-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'external occipital protuberance of squamous part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_external-primary-capillary-plexus-of-median-eminence': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_external-primary-capillary-plexus-of-median-eminence', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_external-primary-capillary-plexus-of-median-eminence', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035404', 'children': ['https://purl.org/ccf/ASCTB-TEMP_internal-primary-capillary-plexus-of-median-eminence'], 'synonymLabels': [], 'label': 'external primary capillary plexus of median eminence'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_facet-of-eleventh-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-eleventh-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-eleventh-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004610', 'children': [], 'synonymLabels': [], 'label': 'facet of eleventh rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_facet-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'facet of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_facet-of-tenth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-tenth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-tenth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': [], 'label': 'facet of tenth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_facet-of-twelfth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-twelfth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_facet-of-twelfth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004611', 'children': [], 'synonymLabels': [], 'label': 'facet of twelfth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fibular-facet-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fibular-facet-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fibular-facet-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'fibular facet of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fibular-notch-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fibular-notch-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fibular-notch-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'fibular notch of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fibular-trochlea-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fibular-trochlea-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fibular-trochlea-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'fibular trochlea of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_first-common-plantar-digital-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_first-common-plantar-digital-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_first-common-plantar-digital-artery', 'parent': 'http://purl.org/sig/ont/fma/fma43959', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-first-digit-of-foot', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-second-digit-of-foot'], 'synonymLabels': [], 'label': 'first common plantar digital artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_first-palmar-metacarpal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_first-palmar-metacarpal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_first-palmar-metacarpal-artery', 'parent': 'http://purl.org/sig/ont/fma/fma22838', 'children': [], 'synonymLabels': [], 'label': 'first palmar metacarpal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_first-posterior-perforating-branch-of-plantar-arch': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_first-posterior-perforating-branch-of-plantar-arch', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_first-posterior-perforating-branch-of-plantar-arch', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': [], 'synonymLabels': [], 'label': 'first posterior perforating branch of plantar arch'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_flexor-digiti-minimi-brevis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_flexor-digiti-minimi-brevis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_flexor-digiti-minimi-brevis-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma321806', 'children': [], 'synonymLabels': [], 'label': 'flexor digiti minimi brevis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-ampulla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'children': [], 'synonymLabels': [], 'label': 'fluid of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-fimbria': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-fimbria', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-fimbria', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410010', 'children': [], 'synonymLabels': [], 'label': 'fluid of fallopian tube fimbria'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-infundibulum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': [], 'synonymLabels': [], 'label': 'fluid of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'children': [], 'synonymLabels': [], 'label': 'fluid of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-isthmus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'children': [], 'synonymLabels': [], 'label': 'fluid of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_foramen-lacerum-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-lacerum-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-lacerum-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'foramen lacerum of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_foramen-magnum-of-basilar-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-magnum-of-basilar-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-magnum-of-basilar-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'foramen magnum of basilar part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_foramen-ovale-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-ovale-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-ovale-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'foramen ovale of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_foramen-rotundum-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-rotundum-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_foramen-rotundum-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'foramen rotundum of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fossa-for-lacrimal-sac-of-lacrimal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fossa-for-lacrimal-sac-of-lacrimal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fossa-for-lacrimal-sac-of-lacrimal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001680', 'children': [], 'synonymLabels': [], 'label': 'fossa for lacrimal sac of lacrimal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fourth-common-plantar-digital-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fourth-common-plantar-digital-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fourth-common-plantar-digital-artery', 'parent': 'http://purl.org/sig/ont/fma/fma43962', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fourth-digit-of-foot', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fifth-digit-of-foot'], 'synonymLabels': [], 'label': 'fourth common plantar digital artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-arm-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003460', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000976', 'http://purl.obolibrary.org/obo/UBERON_0001423', 'http://purl.obolibrary.org/obo/UBERON_0001424'], 'synonymLabels': [], 'label': 'free part of arm bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_free-part-of-leg-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005893', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000981', 'http://purl.obolibrary.org/obo/UBERON_0001446', 'http://purl.obolibrary.org/obo/UBERON_0002446', 'http://purl.obolibrary.org/obo/UBERON_0000979'], 'synonymLabels': [], 'label': 'free part of leg bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_frontal-belly-of-occipitofrontalis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_frontal-belly-of-occipitofrontalis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_frontal-belly-of-occipitofrontalis-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010946', 'children': [], 'synonymLabels': [], 'label': 'frontal belly of occipitofrontalis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_frontal-crest-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_frontal-crest-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_frontal-crest-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'frontal crest of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_frontal-sinus-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_frontal-sinus-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_frontal-sinus-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'frontal sinus of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_frontomarginal-gyrus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_frontomarginal-gyrus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_frontomarginal-gyrus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': [], 'synonymLabels': [], 'label': 'frontomarginal gyrus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_glabella-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_glabella-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_glabella-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'glabella of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_glandular-venous-plexus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_glandular-venous-plexus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_glandular-venous-plexus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0007157', 'children': [], 'synonymLabels': [], 'label': 'glandular venous plexus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_glenoid-fossa-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_glenoid-fossa-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_glenoid-fossa-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'glenoid fossa of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_gluteal-surface-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_gluteal-surface-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_gluteal-surface-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'gluteal surface of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_gluteal-tuberosity-of-femur': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_gluteal-tuberosity-of-femur', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_gluteal-tuberosity-of-femur', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': [], 'label': 'gluteal tuberosity of femur'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_granula-foveaolae-of-parietal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_granula-foveaolae-of-parietal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_granula-foveaolae-of-parietal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'children': [], 'synonymLabels': [], 'label': 'granula foveaolae of parietal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_greater-cornu-of-hyoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_greater-cornu-of-hyoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_greater-cornu-of-hyoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001685', 'children': [], 'synonymLabels': [], 'label': 'greater cornu of hyoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-canal-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-canal-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-canal-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'greater palatine canal of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-foramen-of-palatine-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-foramen-of-palatine-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_greater-palatine-foramen-of-palatine-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001682', 'children': [], 'synonymLabels': [], 'label': 'greater palatine foramen of palatine bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_greater-sciatic-notch-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_greater-sciatic-notch-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_greater-sciatic-notch-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'greater sciatic notch of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_greater-wings-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_greater-wings-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_greater-wings-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'greater wings of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-fibularis-longus-tendon-of-cuboid': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-fibularis-longus-tendon-of-cuboid', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-fibularis-longus-tendon-of-cuboid', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001455', 'children': [], 'synonymLabels': [], 'label': 'groove for fibularis longus tendon of cuboid'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-middle-meningeal-a-of-parietal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-middle-meningeal-a-of-parietal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-middle-meningeal-a-of-parietal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'children': [], 'synonymLabels': [], 'label': 'groove for middle meningeal a. of parietal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-nasopalatine-nerve-of-vomer': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-nasopalatine-nerve-of-vomer', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-nasopalatine-nerve-of-vomer', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002396', 'children': [], 'synonymLabels': [], 'label': 'groove for nasopalatine nerve of vomer'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-posterior-deep-temporal-artery-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-posterior-deep-temporal-artery-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-posterior-deep-temporal-artery-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'groove for posterior deep temporal artery of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-sigmoid-sinus-of-mastoid-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-sigmoid-sinus-of-mastoid-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-sigmoid-sinus-of-mastoid-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'groove for sigmoid sinus of mastoid part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-artery-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-artery-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-artery-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'groove for subclavian artery of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-vein-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-vein-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-subclavian-vein-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'groove for subclavian vein of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'groove for superior sagittal sinus of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-parietal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-parietal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-superior-sagittal-sinus-of-parietal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'children': [], 'synonymLabels': [], 'label': 'groove for superior sagittal sinus of parietal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-tendon-of-flexor-hallucis-longus-muscle-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-tendon-of-flexor-hallucis-longus-muscle-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-tendon-of-flexor-hallucis-longus-muscle-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'groove for tendon of flexor hallucis longus muscle of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-transverse-sinus-of-squamous-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-transverse-sinus-of-squamous-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-transverse-sinus-of-squamous-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'groove for transverse sinus of squamous part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_groove-for-vertebral-artery-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-vertebral-artery-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_groove-for-vertebral-artery-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'groove for vertebral artery of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hamstring-portion-of-adductor-magnus-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hamstring-portion-of-adductor-magnus-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hamstring-portion-of-adductor-magnus-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000370', 'children': [], 'synonymLabels': [], 'label': 'hamstring portion of adductor magnus muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-hippocampus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-hippocampus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-hippocampus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002421', 'children': [], 'synonymLabels': [], 'label': 'head of hippocampus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-radius-of-radius': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-radius-of-radius', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-radius-of-radius', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': [], 'label': 'head of radius of radius'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-foot', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004316', 'children': [], 'synonymLabels': [], 'label': 'head of second distal phalanx of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004311', 'children': [], 'synonymLabels': [], 'label': 'head of second distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-foot', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004324', 'children': [], 'synonymLabels': [], 'label': 'head of second middle phalanx of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-second-middle-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004320', 'children': [], 'synonymLabels': [], 'label': 'head of second middle phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-third-middle-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-third-middle-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-third-middle-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004321', 'children': [], 'synonymLabels': [], 'label': 'head of third middle phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_head-of-ulna-of-ulna': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-ulna-of-ulna', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_head-of-ulna-of-ulna', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': [], 'label': 'head of ulna of ulna'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hemorrhagic-anovulatory-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hemorrhagic-anovulatory-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hemorrhagic-anovulatory-follicle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'children': [], 'synonymLabels': [], 'label': 'hemorrhagic anovulatory follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hepatic-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-arteriole', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-artery', 'children': [], 'synonymLabels': [], 'label': 'hepatic arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hepatic-portal-venule', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001281', 'children': ['http://purl.org/sig/ont/fma/fma15421', 'http://purl.org/sig/ont/fma/fma15420', 'http://purl.org/sig/ont/fma/fma15432', 'http://purl.org/sig/ont/fma/fma15431', 'http://purl.org/sig/ont/fma/fma15425', 'http://purl.org/sig/ont/fma/fma15429', 'http://purl.org/sig/ont/fma/fma15428', 'http://purl.org/sig/ont/fma/fma15424', 'http://purl.org/sig/ont/fma/fma15423', 'http://purl.org/sig/ont/fma/fma82706'], 'synonymLabels': [], 'label': 'hepatic portal venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-greater-petrosal-nerve': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-greater-petrosal-nerve', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-greater-petrosal-nerve', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'hiatus and groove of petrous part of temporal bone for greater petrosal nerve'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-lesser-petrosal-nerve': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-lesser-petrosal-nerve', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hiatus-and-groove-of-petrous-part-of-temporal-bone-for-lesser-petrosal-nerve', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'hiatus and groove of petrous part of temporal bone for lesser petrosal nerve'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_high-truncus-anterior-of-right-pulmonary-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_high-truncus-anterior-of-right-pulmonary-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_high-truncus-anterior-of-right-pulmonary-artery', 'parent': 'http://purl.org/sig/ont/fma/fma8616', 'children': ['http://purl.org/sig/ont/fma/fma8620', 'http://purl.org/sig/ont/fma/fma8617'], 'synonymLabels': [], 'label': 'high truncus anterior of right pulmonary artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hyoid-region-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hyoid-region-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hyoid-region-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004766', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001685'], 'synonymLabels': [], 'label': 'hyoid region bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-branch-of-ascending-pharyngeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-branch-of-ascending-pharyngeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-branch-of-ascending-pharyngeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', 'children': [], 'synonymLabels': [], 'label': 'hypoglossal branch of ascending pharyngeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-canal-of-basilar-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-canal-of-basilar-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hypoglossal-canal-of-basilar-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'hypoglossal canal of basilar part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-fossa-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-fossa-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-fossa-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'hypophyseal fossa of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hypophyseal-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003712', 'children': [], 'synonymLabels': [], 'label': 'hypophyseal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_hypothenar-hand-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_hypothenar-hand-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_hypothenar-hand-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001499', 'children': [], 'synonymLabels': [], 'label': 'hypothenar hand muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ifj1': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ifj1', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ifj1', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_inferior-frontal-junction', 'children': [], 'synonymLabels': [], 'label': 'ifj1'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ifj2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ifj2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ifj2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_inferior-frontal-junction', 'children': [], 'synonymLabels': [], 'label': 'ifj2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ifs1': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ifs1', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ifs1', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002761', 'children': [], 'synonymLabels': [], 'label': 'ifs1'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ifs2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ifs2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ifs2', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002761', 'children': [], 'synonymLabels': [], 'label': 'ifs2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ifs3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ifs3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ifs3', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002761', 'children': [], 'synonymLabels': [], 'label': 'ifs3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ifs4': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ifs4', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ifs4', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002761', 'children': [], 'synonymLabels': [], 'label': 'ifs4'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_iliac-crest-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-crest-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-crest-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'iliac crest of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_iliac-fossa-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-fossa-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-fossa-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'iliac fossa of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_iliac-tubercle-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-tubercle-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-tubercle-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'iliac tubercle of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_iliac-tuberosity-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-tuberosity-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_iliac-tuberosity-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'iliac tuberosity of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_iliocostalis-cervicalis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_iliocostalis-cervicalis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_iliocostalis-cervicalis-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma71302', 'children': [], 'synonymLabels': [], 'label': 'iliocostalis cervicalis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_iliopubic-ramus-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_iliopubic-ramus-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_iliopubic-ramus-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'iliopubic ramus of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_incisive-foramen-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_incisive-foramen-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_incisive-foramen-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'incisive foramen of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_incisor-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_incisor-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_incisor-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014693', 'children': [], 'synonymLabels': [], 'label': 'incisor artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'index finger lateral lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'index finger lateral lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'index finger lateral lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'index finger medial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'index finger medial lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'index finger medial lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eighth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eighth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eighth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of eighth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of fifth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fifth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of fifth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-first-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of first thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of fourth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-fourth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of fourth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-ninth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-ninth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-ninth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of ninth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-second-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of second thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of seventh cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-seventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of seventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of sixth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-sixth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of sixth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-tenth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-tenth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-tenth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of tenth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of third cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-third-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of third thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-twelfth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-twelfth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-facet-of-twelfth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': [], 'label': 'inferior articular facet of twelfth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'inferior articular process of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-articular-process-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'inferior articular process of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'inferior costal facet of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-tenth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-tenth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-costal-facet-of-tenth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': [], 'label': 'inferior costal facet of tenth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-frontal-junction': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-frontal-junction', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-frontal-junction', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016525', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ifj1', 'https://purl.org/ccf/ASCTB-TEMP_ifj2'], 'synonymLabels': [], 'label': 'inferior frontal junction'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-head-of-lateral-pterygoid-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-head-of-lateral-pterygoid-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-head-of-lateral-pterygoid-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006719', 'children': [], 'synonymLabels': [], 'label': 'inferior head of lateral pterygoid muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-lobar-artery-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-lobar-artery-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-lobar-artery-of-spleen', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': [], 'synonymLabels': [], 'label': 'inferior lobar artery of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-longitudinal-lingual-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-longitudinal-lingual-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-longitudinal-lingual-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001576', 'children': [], 'synonymLabels': [], 'label': 'inferior longitudinal lingual muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-mental-spine-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-mental-spine-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-mental-spine-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'inferior mental spine of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-nuchal-line-of-squamous-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-nuchal-line-of-squamous-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-nuchal-line-of-squamous-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'inferior nuchal line of squamous part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-parietal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-parietal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-parietal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'inferior parietal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-pharyngeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-pharyngeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-pharyngeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk', 'children': [], 'synonymLabels': [], 'label': 'inferior pharyngeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-pubic-ramus-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-pubic-ramus-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-pubic-ramus-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'inferior pubic ramus of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-striate-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-striate-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-striate-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035530', 'children': [], 'synonymLabels': [], 'label': 'inferior striate vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-uterine-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-uterine-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-uterine-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': [], 'synonymLabels': [], 'label': 'inferior uterine vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-vein-of-sappey': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-vein-of-sappey', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-vein-of-sappey', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': [], 'label': 'inferior vein of sappey'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-vertebral-notch-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-vertebral-notch-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-vertebral-notch-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'inferior vertebral notch of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_infraglenoid-tubercle-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_infraglenoid-tubercle-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_infraglenoid-tubercle-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'infraglenoid tubercle of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_infraorbital-canal-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-canal-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-canal-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'infraorbital canal of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_infraorbital-foramen-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-foramen-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-foramen-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'infraorbital foramen of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_infraorbital-groove-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-groove-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-groove-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'infraorbital groove of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_infraorbital-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_infraorbital-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014685', 'children': [], 'synonymLabels': [], 'label': 'infraorbital vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_infraspinous-fossa-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_infraspinous-fossa-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_infraspinous-fossa-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'infraspinous fossa of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-cortex': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-cortex', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-cortex', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000389', 'children': [], 'synonymLabels': [], 'label': 'inner cortex'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla', 'children': [], 'synonymLabels': [], 'label': 'inner muscle layer of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum', 'children': [], 'synonymLabels': [], 'label': 'inner muscle layer of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment', 'children': [], 'synonymLabels': [], 'label': 'inner muscle layer of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus', 'children': [], 'synonymLabels': [], 'label': 'inner muscle layer of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-pals': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-pals', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-pals', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001960', 'children': [], 'synonymLabels': [], 'label': 'inner pals'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inner-uterine-myometrium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inner-uterine-myometrium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inner-uterine-myometrium', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001296', 'children': [], 'synonymLabels': [], 'label': 'inner uterine myometrium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intercondylar-notch-of-femur': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intercondylar-notch-of-femur', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intercondylar-notch-of-femur', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': [], 'label': 'intercondylar notch of femur'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_interlobular-artery-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-artery-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-artery-of-pancreas', 'parent': 'http://purl.org/sig/ont/fma/fma70471', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lobular-artery-of-pancreas', 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-artery-of-pancreas'], 'synonymLabels': [], 'label': 'interlobular artery of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_interlobular-vein-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-vein-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-vein-of-pancreas', 'parent': 'http://purl.org/sig/ont/fma/fma70929', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lobular-vein-of-pancreas', 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-vein-of-pancreas'], 'synonymLabels': [], 'label': 'interlobular vein of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intermaxillary-suture-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intermaxillary-suture-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intermaxillary-suture-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'intermaxillary suture of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intermediate-back-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-back-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-back-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'children': ['http://purl.org/sig/ont/fma/fma13402', 'http://purl.org/sig/ont/fma/fma13401'], 'synonymLabels': [], 'label': 'intermediate back muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intermediate-sacral-crest-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-sacral-crest-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-sacral-crest-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'intermediate sacral crest of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_internal-abdominal-oblique-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_internal-abdominal-oblique-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_internal-abdominal-oblique-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002461', 'children': [], 'synonymLabels': [], 'label': 'internal abdominal oblique muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_internal-auditory-meatus-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_internal-auditory-meatus-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_internal-auditory-meatus-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'internal auditory meatus of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_internal-cervical-os': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_internal-cervical-os', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_internal-cervical-os', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000458', 'children': [], 'synonymLabels': [], 'label': 'internal cervical os'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_internal-occipital-protuberance-of-squamous-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_internal-occipital-protuberance-of-squamous-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_internal-occipital-protuberance-of-squamous-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'internal occipital protuberance of squamous part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_internal-primary-capillary-plexus-of-median-eminence': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_internal-primary-capillary-plexus-of-median-eminence', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_internal-primary-capillary-plexus-of-median-eminence', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_external-primary-capillary-plexus-of-median-eminence', 'children': ['http://purl.org/sig/ont/fma/fma0327575'], 'synonymLabels': [], 'label': 'internal primary capillary plexus of median eminence'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_interosseus-border-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_interosseus-border-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_interosseus-border-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'interosseus border of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_interspinales-cervicalis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_interspinales-cervicalis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_interspinales-cervicalis-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': [], 'label': 'interspinales cervicalis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intertransversarii-laterales-lumborum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intertransversarii-laterales-lumborum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intertransversarii-laterales-lumborum-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-part-of-intertransversarii-laterales-lumborum-muscle', 'https://purl.org/ccf/ASCTB-TEMP_ventral-part-of-intertransversarii-laterales-lumborum-muscle'], 'synonymLabels': [], 'label': 'intertransversarii laterales lumborum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-arteriole', 'parent': 'http://purl.org/sig/ont/fma/fma279896', 'children': ['https://purl.org/ccf/ASCTB-TEMP_pre-alveolar-capillary'], 'synonymLabels': [], 'label': 'intra-acinar arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-venule', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pulmonary-venule', 'children': ['https://purl.org/ccf/ASCTB-TEMP_post-alveolar-capillary'], 'synonymLabels': [], 'label': 'intra-acinar venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lobular-capillary-of-pancreas', 'https://purl.org/ccf/ASCTB-TEMP_pancreatic-islet-afferent-arteriole', 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intercalated-duct-of-pancreas', 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intralobular-duct-of-panceas'], 'synonymLabels': [], 'label': 'intralobular arteriole of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intralobular-venule-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-venule-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-venule-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lobular-vein-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'intralobular venule of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein', 'parent': 'http://purl.org/sig/ont/fma/fma70892', 'children': [], 'synonymLabels': [], 'label': 'intramedullary radial vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-2', 'parent': 'http://purl.org/sig/ont/fma/fma70893', 'children': [], 'synonymLabels': [], 'label': 'intramedullary radial vein #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-spinal-vein', 'children': [], 'synonymLabels': [], 'label': 'intramedullary radial vein #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003889', 'children': ['https://purl.org/ccf/ASCTB-TEMP_fluid-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment'], 'synonymLabels': [], 'label': 'intramural segment of fallopian tube'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intrinsic-eye-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-eye-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-eye-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001608', 'http://purl.org/sig/ont/fma/fma49157'], 'synonymLabels': [], 'label': 'intrinsic eye muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ischial-body-of-ischium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-body-of-ischium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-body-of-ischium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'ischial body of ischium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ischial-ramus-of-ischium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-ramus-of-ischium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-ramus-of-ischium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'ischial ramus of ischium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ischial-spine-of-ischium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-spine-of-ischium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-spine-of-ischium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'ischial spine of ischium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ischial-tuberosity-of-ischium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-tuberosity-of-ischium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ischial-tuberosity-of-ischium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'ischial tuberosity of ischium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ischiopubic-ramus-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ischiopubic-ramus-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ischiopubic-ramus-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'ischiopubic ramus of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_jejunal-arcade': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_jejunal-arcade', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_jejunal-arcade', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018255', 'children': ['https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-jejunum'], 'synonymLabels': [], 'label': 'jejunal arcade'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_jugular-branch-of-ascending-pharyngeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_jugular-branch-of-ascending-pharyngeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_jugular-branch-of-ascending-pharyngeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', 'children': [], 'synonymLabels': [], 'label': 'jugular branch of ascending pharyngeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-basilar-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-basilar-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-basilar-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'jugular foramen of basilar part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_jugular-foramen-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'jugular foramen of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_kidney-lymphatic-vessel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_kidney-lymphatic-vessel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_kidney-lymphatic-vessel', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006544', 'children': ['http://purl.obolibrary.org/obo/UBERON_0002042'], 'synonymLabels': [], 'label': 'kidney lymphatic vessel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lacrimal-fossa-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lacrimal-fossa-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lacrimal-fossa-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'lacrimal fossa of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'lamina of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'lamina of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-fallopian-tube-ampulla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'children': [], 'synonymLabels': [], 'label': 'lamina propria fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-gut-associated-lymphoid-tissue-galt-': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-gut-associated-lymphoid-tissue-galt-', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-gut-associated-lymphoid-tissue-galt-', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000331', 'children': [], 'synonymLabels': [], 'label': 'lamina propria/gut associated lymphoid tissue (galt)'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-fimbria': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-fimbria', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-fimbria', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410010', 'children': [], 'synonymLabels': [], 'label': 'lamina propria of fallopian tube fimbria'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-infundibulum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': [], 'synonymLabels': [], 'label': 'lamina propria of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'children': [], 'synonymLabels': [], 'label': 'lamina propria of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lamina-propria-of-fallopian-tube-isthmus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'children': [], 'synonymLabels': [], 'label': 'lamina propria of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-calcaneal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-calcaneal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-calcaneal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001537', 'children': [], 'synonymLabels': [], 'label': 'lateral calcaneal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-compartmet-of-leg-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-compartmet-of-leg-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-compartmet-of-leg-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.org/sig/ont/fma/fma22540', 'http://purl.org/sig/ont/fma/fma22539'], 'synonymLabels': [], 'label': 'lateral compartmet of leg muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fifth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma0323597', 'children': [], 'synonymLabels': [], 'label': 'lateral dorsal digital artery of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fourth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fourth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-fourth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma0323596', 'children': [], 'synonymLabels': [], 'label': 'lateral dorsal digital artery of fourth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-second-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-second-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-second-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma22761', 'children': [], 'synonymLabels': [], 'label': 'lateral dorsal digital artery of second digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-third-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-third-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-dorsal-digital-artery-of-third-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma0323595', 'children': [], 'synonymLabels': [], 'label': 'lateral dorsal digital artery of third digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-antimesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-antimesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-antimesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-ovary', 'children': [], 'synonymLabels': [], 'label': 'lateral inferior antimesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-mesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-mesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-mesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-ovary', 'children': [], 'synonymLabels': [], 'label': 'lateral inferior mesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-antimesenteric-ovary', 'https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-mesenteric-ovary'], 'synonymLabels': [], 'label': 'lateral inferior ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035279', 'children': ['https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel'], 'synonymLabels': [], 'label': 'lateral lymphatic pathway of upper arm'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_subclavicular-lymph-node', 'children': [], 'synonymLabels': [], 'label': 'lateral lymphatic pathway of upper arm #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-ovary', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-inferior-ovary', 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-ovary'], 'synonymLabels': [], 'label': 'lateral ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-plantar-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-plantar-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-plantar-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001546', 'children': [], 'synonymLabels': [], 'label': 'lateral plantar vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-posterior-cervical-intertransversarii-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-posterior-cervical-intertransversarii-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-posterior-cervical-intertransversarii-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': [], 'label': 'lateral posterior cervical intertransversarii muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-process-of-tuberosity-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-process-of-tuberosity-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-process-of-tuberosity-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'lateral process of tuberosity of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-first-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-first-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-first-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma71534', 'children': [], 'synonymLabels': [], 'label': 'lateral proper palmar digital artery of first digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-second-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-second-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-palmar-digital-artery-of-second-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma22763', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-branch-of-lateral-proper-palmar-digital-artery-of-second-digit-of-hand'], 'synonymLabels': [], 'label': 'lateral proper palmar digital artery of second digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fifth-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fifth-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fifth-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-branch-of-lateral-plantar-artery', 'children': [], 'synonymLabels': [], 'label': 'lateral proper plantar digital artery of fifth digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-first-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-first-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-first-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_first-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'lateral proper plantar digital artery of first digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fourth-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fourth-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fourth-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_fourth-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'lateral proper plantar digital artery of fourth digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-second-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-second-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-second-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_second-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'lateral proper plantar digital artery of second digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-third-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-third-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-third-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_third-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'lateral proper plantar digital artery of third digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-pterygoid-plate-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-pterygoid-plate-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-pterygoid-plate-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'lateral pterygoid plate of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-sacral-crest-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-sacral-crest-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-sacral-crest-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'lateral sacral crest of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-antimesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-antimesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-antimesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-ovary', 'children': ['http://purl.obolibrary.org/obo/UBERON_0013192'], 'synonymLabels': [], 'label': 'lateral superior antimesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-mesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-mesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-mesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-ovary', 'children': [], 'synonymLabels': [], 'label': 'lateral superior mesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-superior-antimesenteric-ovary', 'https://purl.org/ccf/ASCTB-TEMP_lateral-superior-mesenteric-ovary'], 'synonymLabels': [], 'label': 'lateral superior ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-supramalleolar-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-supramalleolar-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-supramalleolar-artery', 'parent': 'http://purl.org/sig/ont/fma/fma43904', 'children': [], 'synonymLabels': [], 'label': 'lateral supramalleolar artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-sural-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-sural-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-sural-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': [], 'label': 'lateral sural artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lateral-vertebral-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.org/sig/ont/fma/fma13385', 'http://purl.obolibrary.org/obo/UBERON_0001122', 'http://purl.org/sig/ont/fma/fma13387'], 'synonymLabels': [], 'label': 'lateral vertebral muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-anterior-body-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-body-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-body-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'children': [], 'synonymLabels': [], 'label': 'left anterior body of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-anterior-fundus-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-fundus-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-fundus-of-uterus', 'parent': 'http://purl.org/sig/ont/fma/fma17561', 'children': [], 'synonymLabels': [], 'label': 'left anterior fundus of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-anterior-lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-lower-uterine-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'children': [], 'synonymLabels': [], 'label': 'left anterior lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-anterior-mediastinal-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-mediastinal-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-mediastinal-lymph-node', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': ['https://purl.org/ccf/ASCTB-TEMP_left-suprabronchial-lymph-node-of-superior-lymph-collecting-vessel-of-superior-inferior-lobe-of-left-lung', 'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-pleura-pericardium-heart-thymus-and-left-lung'], 'synonymLabels': [], 'label': 'left anterior mediastinal lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-artery-of-caudate-lobe': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-artery-of-caudate-lobe', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-artery-of-caudate-lobe', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015481', 'children': [], 'synonymLabels': [], 'label': 'left artery of caudate lobe'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-collecting-lymph-trunk-of-lymphatics-of-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-collecting-lymph-trunk-of-lymphatics-of-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-collecting-lymph-trunk-of-lymphatics-of-ovary', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': [], 'label': 'left collecting lymph trunk of lymphatics of ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-crus-of-lumbar-part-of-respiratory-diaphragm-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-crus-of-lumbar-part-of-respiratory-diaphragm-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-crus-of-lumbar-part-of-respiratory-diaphragm-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle', 'children': [], 'synonymLabels': [], 'label': 'left crus of lumbar part of respiratory diaphragm muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-lateral-aortic-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-aortic-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-aortic-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma5841', 'children': [], 'synonymLabels': [], 'label': 'left lateral aortic lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015481', 'children': ['http://purl.org/sig/ont/fma/fma70453', 'http://purl.org/sig/ont/fma/fma70452'], 'synonymLabels': [], 'label': 'left lateral hepatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein', 'parent': 'http://purl.org/sig/ont/fma/fma15432', 'children': [], 'synonymLabels': [], 'label': 'left lateral hepatic portal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-lateral-hepatic-portal-vein-2', 'parent': 'http://purl.org/sig/ont/fma/fma15431', 'children': [], 'synonymLabels': [], 'label': 'left lateral hepatic portal vein #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015481', 'children': ['http://purl.org/sig/ont/fma/fma70450', 'http://purl.org/sig/ont/fma/fma70449'], 'synonymLabels': [], 'label': 'left medial hepatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein', 'parent': 'http://purl.org/sig/ont/fma/fma15429', 'children': [], 'synonymLabels': [], 'label': 'left medial hepatic portal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-medial-hepatic-portal-vein-2', 'parent': 'http://purl.org/sig/ont/fma/fma15428', 'children': [], 'synonymLabels': [], 'label': 'left medial hepatic portal vein #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-posterior-body-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-body-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-body-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'children': [], 'synonymLabels': [], 'label': 'left posterior body of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-posterior-fundus-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-fundus-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-fundus-of-uterus', 'parent': 'http://purl.org/sig/ont/fma/fma17561', 'children': [], 'synonymLabels': [], 'label': 'left posterior fundus of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-posterior-lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-lower-uterine-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'children': [], 'synonymLabels': [], 'label': 'left posterior lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_left-suprabronchial-lymph-node-of-superior-lymph-collecting-vessel-of-superior-inferior-lobe-of-left-lung': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_left-suprabronchial-lymph-node-of-superior-lymph-collecting-vessel-of-superior-inferior-lobe-of-left-lung', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_left-suprabronchial-lymph-node-of-superior-lymph-collecting-vessel-of-superior-inferior-lobe-of-left-lung', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-mediastinal-lymph-node', 'children': [], 'synonymLabels': [], 'label': 'left suprabronchial lymph node of superior lymph collecting vessel of superior inferior lobe of left lung'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lesser-cornu-of-hyoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-cornu-of-hyoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-cornu-of-hyoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001685', 'children': [], 'synonymLabels': [], 'label': 'lesser cornu of hyoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lesser-palatine-foramen-of-palatine-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-palatine-foramen-of-palatine-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-palatine-foramen-of-palatine-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001682', 'children': [], 'synonymLabels': [], 'label': 'lesser palatine foramen of palatine bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lesser-sciatic-notch-of-ischium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-sciatic-notch-of-ischium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-sciatic-notch-of-ischium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'lesser sciatic notch of ischium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lesser-wings-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-wings-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lesser-wings-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'lesser wings of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_levator-costarum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_levator-costarum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_levator-costarum-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'children': ['https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-breves-of-levator-costarum-muscle', 'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-longi-of-levator-costarum-muscle'], 'synonymLabels': [], 'label': 'levator costarum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-breves-of-levator-costarum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-breves-of-levator-costarum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-breves-of-levator-costarum-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_levator-costarum-muscle', 'children': [], 'synonymLabels': [], 'label': 'levatores costarum breves of levator costarum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-longi-of-levator-costarum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-longi-of-levator-costarum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_levatores-costarum-longi-of-levator-costarum-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_levator-costarum-muscle', 'children': [], 'synonymLabels': [], 'label': 'levatores costarum longi of levator costarum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_linea-terminalis-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_linea-terminalis-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_linea-terminalis-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'linea terminalis of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lingular-artery-of-left-lung': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lingular-artery-of-left-lung', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lingular-artery-of-left-lung', 'parent': 'http://purl.org/sig/ont/fma/fma9284', 'children': ['http://purl.org/sig/ont/fma/fma8640', 'http://purl.org/sig/ont/fma/fma8639'], 'synonymLabels': [], 'label': 'lingular artery of left lung'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'little finger lateral lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'little finger lateral lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'little finger lateral lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'little finger medial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'little finger medial lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'little finger medial lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_liver-immune-resident-component': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_liver-immune-resident-component', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_liver-immune-resident-component', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004647', 'children': [], 'synonymLabels': [], 'label': 'liver immune resident component'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lobar-artery-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lobar-artery-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lobar-artery-of-spleen', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': ['https://purl.org/ccf/ASCTB-TEMP_segmental-branch-of-lobar-artery-of-spleen'], 'synonymLabels': [], 'label': 'lobar artery of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lobular-artery-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lobular-artery-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lobular-artery-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-artery-of-pancreas'], 'synonymLabels': [], 'label': 'lobular artery of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lobular-capillary-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lobular-capillary-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lobular-capillary-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'lobular capillary of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lobular-vein-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lobular-vein-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lobular-vein-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-vein-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_intralobular-venule-of-pancreas', 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-vein-of-pancreas'], 'synonymLabels': [], 'label': 'lobular vein of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_long-branch-of-vasa-recta-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_long-branch-of-vasa-recta-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_long-branch-of-vasa-recta-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-colon', 'children': ['https://purl.org/ccf/ASCTB-TEMP_submucosal-artery-of-colon', 'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon'], 'synonymLabels': [], 'label': 'long branch of vasa recta of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_longitudinal-pharyngeal-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002377', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010234', 'http://purl.obolibrary.org/obo/UBERON_0010937', 'http://purl.obolibrary.org/obo/UBERON_0008804'], 'synonymLabels': [], 'label': 'longitudinal pharyngeal muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_longus-capitus-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_longus-capitus-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_longus-capitus-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle', 'children': [], 'synonymLabels': [], 'label': 'longus capitus muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': ['https://purl.org/ccf/ASCTB-TEMP_central-anterior-lower-uterine-segment', 'https://purl.org/ccf/ASCTB-TEMP_central-posterior-lower-uterine-segment', 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-lower-uterine-segment', 'https://purl.org/ccf/ASCTB-TEMP_left-posterior-lower-uterine-segment', 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-lower-uterine-segment', 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-lower-uterine-segment'], 'synonymLabels': [], 'label': 'lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lunate-surface-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lunate-surface-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lunate-surface-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'lunate surface of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_luteinized-unruptured-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_luteinized-unruptured-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_luteinized-unruptured-follicle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'children': [], 'synonymLabels': [], 'label': 'luteinized unruptured follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatic': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003332', 'children': [], 'synonymLabels': [], 'label': 'lymphatic'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatic-of-mesosalpinx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic-of-mesosalpinx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic-of-mesosalpinx', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx', 'children': [], 'synonymLabels': [], 'label': 'lymphatic of mesosalpinx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatic-vessel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic-vessel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic-vessel', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013192', 'children': [], 'synonymLabels': [], 'label': 'lymphatic vessel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-great-omentum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-great-omentum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-great-omentum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005435', 'children': [], 'synonymLabels': [], 'label': 'lymphatics of great omentum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-pleura-pericardium-heart-thymus-and-left-lung': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-pleura-pericardium-heart-thymus-and-left-lung', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatics-of-pleura-pericardium-heart-thymus-and-left-lung', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_left-anterior-mediastinal-lymph-node', 'children': [], 'synonymLabels': [], 'label': 'lymphatics of pleura, pericardium, heart, thymus, and left lung'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_main-cochlear-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_main-cochlear-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_main-cochlear-artery', 'parent': 'http://purl.org/sig/ont/fma/fma52242', 'children': [], 'synonymLabels': [], 'label': 'main cochlear artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fifth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fifth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fifth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': [], 'label': 'mammillary process of fifth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-first-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-first-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-first-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': [], 'label': 'mammillary process of first lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fourth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fourth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-fourth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': [], 'label': 'mammillary process of fourth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-second-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-second-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-second-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': [], 'label': 'mammillary process of second lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-third-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-third-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mammillary-process-of-third-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': [], 'label': 'mammillary process of third lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-angle-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-angle-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-angle-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mandibular angle of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-canal-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-canal-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-canal-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mandibular canal of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-condyle-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-condyle-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-condyle-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mandibular condyle of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-foramen-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-foramen-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-foramen-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mandibular foramen of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-fossa-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-fossa-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-fossa-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'mandibular fossa of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-neck-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-neck-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-neck-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mandibular neck of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mandibular-notch-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-notch-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mandibular-notch-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mandibular notch of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mastoid-foramen-of-mastoid-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mastoid-foramen-of-mastoid-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mastoid-foramen-of-mastoid-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'mastoid foramen of mastoid part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mastoid-notch-of-mastoid-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mastoid-notch-of-mastoid-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mastoid-notch-of-mastoid-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'mastoid notch of mastoid part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mastoid-process-of-mastoid-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mastoid-process-of-mastoid-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mastoid-process-of-mastoid-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'mastoid process of mastoid part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_matrisome': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_matrisome', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_matrisome', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013192', 'children': [], 'synonymLabels': [], 'label': 'matrisome'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_maxillary-sinus-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_maxillary-sinus-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_maxillary-sinus-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'maxillary sinus of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_meandering-mesenteric-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_meandering-mesenteric-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_meandering-mesenteric-artery', 'parent': 'http://purl.org/sig/ont/fma/fma14828', 'children': [], 'synonymLabels': [], 'label': 'meandering mesenteric artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-calcaneal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-calcaneal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-calcaneal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001538', 'children': [], 'synonymLabels': [], 'label': 'medial calcaneal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fifth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma22820', 'children': [], 'synonymLabels': [], 'label': 'medial dorsal digital artery of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fourth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fourth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-fourth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma0323597', 'children': [], 'synonymLabels': [], 'label': 'medial dorsal digital artery of fourth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-second-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-second-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-second-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma0323595', 'children': [], 'synonymLabels': [], 'label': 'medial dorsal digital artery of second digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-third-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-third-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-dorsal-digital-artery-of-third-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma0323596', 'children': [], 'synonymLabels': [], 'label': 'medial dorsal digital artery of third digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-antimesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-antimesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-antimesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-ovary', 'children': ['http://purl.obolibrary.org/obo/UBERON_0013191'], 'synonymLabels': [], 'label': 'medial inferior antimesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-mesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-mesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-mesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-ovary', 'children': [], 'synonymLabels': [], 'label': 'medial inferior mesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_medial-inferior-antimesenteric-ovary', 'https://purl.org/ccf/ASCTB-TEMP_medial-inferior-mesenteric-ovary'], 'synonymLabels': [], 'label': 'medial inferior ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-lenticulostriate-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lenticulostriate-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lenticulostriate-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'medial lenticulostriate artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-lumbar-intertransversarii-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lumbar-intertransversarii-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lumbar-intertransversarii-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': [], 'label': 'medial lumbar intertransversarii muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-node-of-common-illiac-lymph-nodes': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-node-of-common-illiac-lymph-nodes', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-node-of-common-illiac-lymph-nodes', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': [], 'label': 'medial lymph node of common illiac lymph nodes'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-trunk-of-principal-axillary-lymph-vessel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-trunk-of-principal-axillary-lymph-vessel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymph-trunk-of-principal-axillary-lymph-vessel', 'parent': 'http://purl.org/sig/ont/fma/fma276805', 'children': [], 'synonymLabels': [], 'label': 'medial lymph trunk of principal axillary lymph vessel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-lymphatic-pathway-of-upper-arm': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymphatic-pathway-of-upper-arm', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-lymphatic-pathway-of-upper-arm', 'parent': 'http://purl.org/sig/ont/fma/fma71749', 'children': ['https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node'], 'synonymLabels': [], 'label': 'medial lymphatic pathway of upper arm'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-malleolus-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-malleolus-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-malleolus-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'medial malleolus of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-ovary', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000992', 'children': ['https://purl.org/ccf/ASCTB-TEMP_medial-inferior-ovary', 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-ovary'], 'synonymLabels': [], 'label': 'medial ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-posterior-cervical-intertransversarii-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-posterior-cervical-intertransversarii-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-posterior-cervical-intertransversarii-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': [], 'label': 'medial posterior cervical intertransversarii muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-process-of-tuberosity-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-process-of-tuberosity-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-process-of-tuberosity-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'medial process of tuberosity of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-artery-of-first-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-artery-of-first-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-artery-of-first-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma71534', 'children': [], 'synonymLabels': [], 'label': 'medial proper palmar digital artery of first digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-vein-of-fifth-digit-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-vein-of-fifth-digit-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-palmar-digital-vein-of-fifth-digit-of-hand', 'parent': 'http://purl.org/sig/ont/fma/fma22914', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cutaneous-branch-of-medial-proper-palmar-digital-vein-of-fifth-digit-of-hand'], 'synonymLabels': [], 'label': 'medial proper palmar digital vein of fifth digit of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fifth-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fifth-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fifth-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_fourth-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'medial proper plantar digital artery of fifth digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-first-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-first-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-first-digit-of-foot', 'parent': 'http://purl.org/sig/ont/fma/fma43959', 'children': [], 'synonymLabels': [], 'label': 'medial proper plantar digital artery of first digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fourth-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fourth-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fourth-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_third-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'medial proper plantar digital artery of fourth digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-second-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-second-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-second-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_first-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'medial proper plantar digital artery of second digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-third-digit-of-foot': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-third-digit-of-foot', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-third-digit-of-foot', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_second-common-plantar-digital-artery', 'children': [], 'synonymLabels': [], 'label': 'medial proper plantar digital artery of third digit of foot'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-pterygoid-plate-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-pterygoid-plate-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-pterygoid-plate-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'medial pterygoid plate of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-superior-antimesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-antimesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-antimesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-ovary', 'children': [], 'synonymLabels': [], 'label': 'medial superior antimesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-superior-mesenteric-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-mesenteric-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-mesenteric-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-ovary', 'children': [], 'synonymLabels': [], 'label': 'medial superior mesenteric ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-superior-ovary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-ovary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-ovary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_medial-ovary', 'children': ['https://purl.org/ccf/ASCTB-TEMP_medial-superior-antimesenteric-ovary', 'https://purl.org/ccf/ASCTB-TEMP_medial-superior-mesenteric-ovary'], 'synonymLabels': [], 'label': 'medial superior ovary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_medial-sural-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_medial-sural-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_medial-sural-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002250', 'children': [], 'synonymLabels': [], 'label': 'medial sural artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_median-sacral-crest-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_median-sacral-crest-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_median-sacral-crest-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'median sacral crest of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_meningohypophyseal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_meningohypophyseal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_meningohypophyseal-artery', 'parent': 'http://purl.org/sig/ont/fma/fma49817', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dorsal-meningeal-artery', 'https://purl.org/ccf/ASCTB-TEMP_tentorial-artery'], 'synonymLabels': [], 'label': 'meningohypophyseal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mental-foramen-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mental-foramen-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mental-foramen-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mental foramen of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mental-protuberance-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mental-protuberance-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mental-protuberance-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mental protuberance of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mental-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mental-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mental-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001653', 'children': [], 'synonymLabels': [], 'label': 'mental vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-mesosalpinx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-mesosalpinx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-mesosalpinx', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012331', 'children': [], 'synonymLabels': [], 'label': 'mesothelium of mesosalpinx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-the-uterine-serosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-the-uterine-serosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mesothelium-of-the-uterine-serosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001297', 'children': [], 'synonymLabels': [], 'label': 'mesothelium of the uterine serosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-ear-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-ear-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-ear-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001599', 'http://purl.obolibrary.org/obo/UBERON_0001600'], 'synonymLabels': [], 'label': 'middle ear muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'middle finger lateral lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'middle finger lateral lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'middle finger lateral lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'middle finger medial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'middle finger medial lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'middle finger medial lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-internal-frontal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-internal-frontal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-internal-frontal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'middle internal frontal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla', 'children': [], 'synonymLabels': [], 'label': 'middle muscle layer of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum', 'children': [], 'synonymLabels': [], 'label': 'middle muscle layer of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment', 'children': [], 'synonymLabels': [], 'label': 'middle muscle layer of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus', 'children': [], 'synonymLabels': [], 'label': 'middle muscle layer of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-nasal-concha-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-nasal-concha-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-nasal-concha-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'middle nasal concha of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-pharyngeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-pharyngeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-pharyngeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk', 'children': [], 'synonymLabels': [], 'label': 'middle pharyngeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013644', 'children': ['https://purl.org/ccf/ASCTB-TEMP_epithelium'], 'synonymLabels': [], 'label': 'mucosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-ampulla', 'children': ['http://purl.obolibrary.org/obo/UBERON_0004804'], 'synonymLabels': [], 'label': 'mucosa of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-fimbria': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-fimbria', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-fimbria', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410010', 'children': [], 'synonymLabels': [], 'label': 'mucosa of fallopian tube fimbria'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-infundibulum', 'children': [], 'synonymLabels': [], 'label': 'mucosa of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-intramural-segment', 'children': [], 'synonymLabels': [], 'label': 'mucosa of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-isthmus', 'children': [], 'synonymLabels': [], 'label': 'mucosa of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosal-arteriole-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosal-arteriole-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosal-arteriole-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-arteriole-of-colon', 'children': ['https://purl.org/ccf/ASCTB-TEMP_branch-of-mucous-plexus-of-colon'], 'synonymLabels': [], 'label': 'mucosal arteriole of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mucosal-venule-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mucosal-venule-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mucosal-venule-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-venule-of-colon', 'children': [], 'synonymLabels': [], 'label': 'mucosal venule of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_multifidus-cervicis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_multifidus-cervicis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_multifidus-cervicis-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': [], 'label': 'multifidus cervicis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_multifidus-lumborum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_multifidus-lumborum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_multifidus-lumborum-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': [], 'label': 'multifidus lumborum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_multifidus-thoracis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_multifidus-thoracis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_multifidus-thoracis-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010990', 'children': [], 'synonymLabels': [], 'label': 'multifidus thoracis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_multilayer-ovarian-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_multilayer-ovarian-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_multilayer-ovarian-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'children': [], 'synonymLabels': [], 'label': 'multilayer ovarian follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-ampulla'], 'synonymLabels': [], 'label': 'muscle layer of oviduct ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-infundibulum'], 'synonymLabels': [], 'label': 'muscle layer of oviduct infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-intramural-segment'], 'synonymLabels': [], 'label': 'muscle layer of oviduct intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus', 'children': ['https://purl.org/ccf/ASCTB-TEMP_inner-muscle-layer-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_middle-muscle-layer-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-isthmus'], 'synonymLabels': [], 'label': 'muscle layer of oviduct isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscle-of-facial-expression', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002376', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001582', 'http://purl.org/sig/ont/fma/fma46794', 'http://purl.obolibrary.org/obo/UBERON_0008597', 'http://purl.org/sig/ont/fma/fma46816', 'http://purl.org/sig/ont/fma/fma46777', 'http://purl.org/sig/ont/fma/fma46798', 'http://purl.obolibrary.org/obo/UBERON_0008595', 'http://purl.org/sig/ont/fma/fma46802', 'http://purl.org/sig/ont/fma/fma46805', 'http://purl.obolibrary.org/obo/UBERON_0008596', 'http://purl.org/sig/ont/fma/fma322110', 'http://purl.obolibrary.org/obo/UBERON_0010953', 'http://purl.obolibrary.org/obo/UBERON_0010946', 'http://purl.obolibrary.org/obo/UBERON_0001578', 'http://purl.obolibrary.org/obo/UBERON_0010933', 'http://purl.obolibrary.org/obo/UBERON_0005467', 'http://purl.org/sig/ont/fma/fma46769', 'http://purl.obolibrary.org/obo/UBERON_0008598', 'http://purl.obolibrary.org/obo/UBERON_0008609', 'http://purl.obolibrary.org/obo/UBERON_0008593', 'http://purl.obolibrary.org/obo/UBERON_0008594'], 'synonymLabels': [], 'label': 'muscle of facial expression'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscularis-externa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-externa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-externa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002116', 'children': ['https://purl.org/ccf/ASCTB-TEMP_circular-longitudinal-muscle'], 'synonymLabels': [], 'label': 'muscularis externa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscularis-mucosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-mucosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-mucosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000331', 'children': [], 'synonymLabels': [], 'label': 'muscularis mucosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscularis-propria': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-propria', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscularis-propria', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013644', 'children': [], 'synonymLabels': [], 'label': 'muscularis propria'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_musculus-uvulae-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_musculus-uvulae-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_musculus-uvulae-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003682', 'children': [], 'synonymLabels': [], 'label': 'musculus uvulae muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-plexus-of-auerbach': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-plexus-of-auerbach', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-plexus-of-auerbach', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012377', 'children': [], 'synonymLabels': [], 'label': 'myenteric plexus of auerbach'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-groove-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-groove-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-groove-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mylohyoid groove of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-line-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-line-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mylohyoid-line-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'mylohyoid line of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nasolacrimal-canal-of-maxilla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nasolacrimal-canal-of-maxilla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nasolacrimal-canal-of-maxilla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002397', 'children': [], 'synonymLabels': [], 'label': 'nasolacrimal canal of maxilla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_neck-of-radius-of-radius': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_neck-of-radius-of-radius', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_neck-of-radius-of-radius', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': [], 'label': 'neck of radius of radius'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013192', 'children': [], 'synonymLabels': [], 'label': 'nerve'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-ampulla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'children': [], 'synonymLabels': [], 'label': 'nerve of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-fimbria': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-fimbria', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-fimbria', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410010', 'children': [], 'synonymLabels': [], 'label': 'nerve of fallopian tube fimbria'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-infundibulum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': [], 'synonymLabels': [], 'label': 'nerve of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'children': [], 'synonymLabels': [], 'label': 'nerve of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-fallopian-tube-isthmus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'children': [], 'synonymLabels': [], 'label': 'nerve of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve-of-mesosalpinx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-mesosalpinx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-mesosalpinx', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx', 'children': [], 'synonymLabels': [], 'label': 'nerve of mesosalpinx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerves': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerves', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerves', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003332', 'children': [], 'synonymLabels': [], 'label': 'nerves'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', 'parent': 'http://purl.org/sig/ont/fma/fma49497', 'children': ['https://purl.org/ccf/ASCTB-TEMP_hypoglossal-branch-of-ascending-pharyngeal-artery', 'https://purl.org/ccf/ASCTB-TEMP_jugular-branch-of-ascending-pharyngeal-artery', 'https://purl.org/ccf/ASCTB-TEMP_odontoid-arcade', 'http://purl.obolibrary.org/obo/UBERON_0010249'], 'synonymLabels': [], 'label': 'neuromeningeal trunk'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-eighth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-eighth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-eighth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of eighth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fifth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fifth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fifth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of fifth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fourth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fourth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-fourth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of fourth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-ninth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-ninth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-ninth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of ninth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-second-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-second-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-second-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of second rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-seventh-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-seventh-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-seventh-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of seventh rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-sixth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-sixth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-sixth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of sixth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-tenth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-tenth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-tenth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of tenth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-third-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-third-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-articular-facet-of-tubercle-of-third-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': [], 'label': 'non-articular facet of tubercle of third rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_non-penicillar-arteriole-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_non-penicillar-arteriole-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_non-penicillar-arteriole-of-spleen', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010401', 'children': ['https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen'], 'synonymLabels': [], 'label': 'non-penicillar arteriole of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_obturator-foramen-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_obturator-foramen-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_obturator-foramen-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'obturator foramen of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_obturator-groove-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_obturator-groove-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_obturator-groove-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'obturator groove of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_occipital-belly-of-occipitofrontalis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_occipital-belly-of-occipitofrontalis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_occipital-belly-of-occipitofrontalis-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010946', 'children': [], 'synonymLabels': [], 'label': 'occipital belly of occipitofrontalis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_occipital-condyle-of-basilar-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_occipital-condyle-of-basilar-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_occipital-condyle-of-basilar-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'occipital condyle of basilar part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_occipitoparietal-transition-region': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_occipitoparietal-transition-region', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_occipitoparietal-transition-region', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': [], 'label': 'occipitoparietal transition region'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-fusiform-gyrus-occipital-part': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-fusiform-gyrus-occipital-part', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-fusiform-gyrus-occipital-part', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': [], 'label': 'occipitotemporal (fusiform) gyrus, occipital part'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-transition-region': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-transition-region', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_occipitotemporal-transition-region', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002021', 'children': [], 'synonymLabels': [], 'label': 'occipitotemporal transition region'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_odontoid-arcade': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_odontoid-arcade', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_odontoid-arcade', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_neuromeningeal-trunk', 'children': [], 'synonymLabels': [], 'label': 'odontoid arcade'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_olecranon-fossa-of-humerus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_olecranon-fossa-of-humerus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_olecranon-fossa-of-humerus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': [], 'label': 'olecranon fossa of humerus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_olecranon-of-ulna': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_olecranon-of-ulna', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_olecranon-of-ulna', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': [], 'label': 'olecranon of ulna'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_olfactory-foramina-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_olfactory-foramina-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_olfactory-foramina-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'olfactory foramina of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_opponens-digiti-minimi-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_opponens-digiti-minimi-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_opponens-digiti-minimi-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma321806', 'children': [], 'synonymLabels': [], 'label': 'opponens digiti minimi muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_optic-canal-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_optic-canal-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_optic-canal-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'optic canal of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-anterior-cerebral-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-anterior-cerebral-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-anterior-cerebral-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'orbitofrontal branch of anterior cerebral artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-middle-cerebral-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-middle-cerebral-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_orbitofrontal-branch-of-middle-cerebral-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001627', 'children': [], 'synonymLabels': [], 'label': 'orbitofrontal branch of middle cerebral artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-cortex': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-cortex', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-cortex', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000389', 'children': [], 'synonymLabels': [], 'label': 'outer cortex'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla', 'children': [], 'synonymLabels': [], 'label': 'outer muscle layer of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum', 'children': [], 'synonymLabels': [], 'label': 'outer muscle layer of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment', 'children': [], 'synonymLabels': [], 'label': 'outer muscle layer of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-muscle-layer-of-fallopian-tube-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus', 'children': [], 'synonymLabels': [], 'label': 'outer muscle layer of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-pals': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-pals', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-pals', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001960', 'children': [], 'synonymLabels': [], 'label': 'outer pals'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_outer-uterine-myometrium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_outer-uterine-myometrium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_outer-uterine-myometrium', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001296', 'children': [], 'synonymLabels': [], 'label': 'outer uterine myometrium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ovarian-corticomedullary-junction': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ovarian-corticomedullary-junction', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ovarian-corticomedullary-junction', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_central-inferior-antimesenteric-ovary', 'children': [], 'synonymLabels': [], 'label': 'ovarian corticomedullary junction'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ovarian-medullary-vasculature': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ovarian-medullary-vasculature', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ovarian-medullary-vasculature', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013192', 'children': [], 'synonymLabels': [], 'label': 'ovarian medullary vasculature'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_anterior-interosseous-lymphatic-channel', 'children': ['https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-3', 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-3'], 'synonymLabels': [], 'label': 'palmar arch lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-interosseous-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'palmar arch lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'palmar arch lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-4': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-4', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-4', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'palmar arch lymphatic channel #4'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_palmar-carpal-arterial-arch': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-carpal-arterial-arch', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-carpal-arterial-arch', 'parent': 'http://purl.org/sig/ont/fma/fma22750', 'children': [], 'synonymLabels': [], 'label': 'palmar carpal arterial arch'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_palmar-interosseous-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-interosseous-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_palmar-interosseous-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001500', 'children': [], 'synonymLabels': [], 'label': 'palmar interosseous muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pancreatic-islet-afferent-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pancreatic-islet-afferent-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pancreatic-islet-afferent-arteriole', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', 'children': ['http://purl.org/sig/ont/fma/fma280080'], 'synonymLabels': [], 'label': 'pancreatic islet afferent arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_papillary-tip-epithelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_papillary-tip-epithelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_papillary-tip-epithelium', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009095', 'children': [], 'synonymLabels': [], 'label': 'papillary tip epithelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_paracentral-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_paracentral-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_paracentral-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'paracentral artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pecten-pubis-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pecten-pubis-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pecten-pubis-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'pecten pubis of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pectinal-line-of-femur': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pectinal-line-of-femur', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pectinal-line-of-femur', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000981', 'children': [], 'synonymLabels': [], 'label': 'pectinal line of femur'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'pedicle of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pedicle-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'pedicle of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002378', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001327', 'http://purl.obolibrary.org/obo/UBERON_0011511', 'https://purl.org/ccf/ASCTB-TEMP_puboanalis-muscle', 'http://purl.obolibrary.org/obo/UBERON_0011528', 'https://purl.org/ccf/ASCTB-TEMP_puboperineales-muscle', 'http://purl.org/sig/ont/fma/fma77253', 'http://purl.obolibrary.org/obo/UBERON_0011512', 'http://purl.obolibrary.org/obo/UBERON_0011532'], 'synonymLabels': [], 'label': 'pelvic floor muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-accessory-pancreatic-duct': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-accessory-pancreatic-duct', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-accessory-pancreatic-duct', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-accessory-pancreatic-duct'], 'synonymLabels': [], 'label': 'periductal arteriole of accessory pancreatic duct'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-interlobular-duct-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-interlobular-duct-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-interlobular-duct-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-interlobular-duct-of-pancreas'], 'synonymLabels': [], 'label': 'periductal arteriole of interlobular duct of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-main-pancreatic-duct': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-main-pancreatic-duct', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-main-pancreatic-duct', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-main-pancreatic-duct'], 'synonymLabels': [], 'label': 'periductal arteriole of main pancreatic duct'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-artery-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-artery-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-artery-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-accessory-pancreatic-duct', 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-main-pancreatic-duct'], 'synonymLabels': [], 'label': 'periductal branch of interlobular artery of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-vein-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-vein-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-interlobular-vein-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_interlobular-vein-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'periductal branch of interlobular vein of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-artery-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-artery-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-artery-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lobular-artery-of-pancreas', 'children': ['https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-interlobular-duct-of-pancreas'], 'synonymLabels': [], 'label': 'periductal branch of lobular artery of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-vein-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-vein-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-branch-of-lobular-vein-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lobular-vein-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'periductal branch of lobular vein of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-accessory-pancreatic-duct': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-accessory-pancreatic-duct', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-accessory-pancreatic-duct', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-accessory-pancreatic-duct', 'children': [], 'synonymLabels': [], 'label': 'periductal capillary of accessory pancreatic duct'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intercalated-duct-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intercalated-duct-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intercalated-duct-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'periductal capillary of intercalated duct of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-interlobular-duct-of-pancreas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-interlobular-duct-of-pancreas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-interlobular-duct-of-pancreas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-interlobular-duct-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'periductal capillary of interlobular duct of pancreas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intralobular-duct-of-panceas': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intralobular-duct-of-panceas', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-intralobular-duct-of-panceas', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intralobular-arteriole-of-pancreas', 'children': [], 'synonymLabels': [], 'label': 'periductal capillary of intralobular duct of panceas'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-main-pancreatic-duct': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-main-pancreatic-duct', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_periductal-capillary-of-main-pancreatic-duct', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_periductal-arteriole-of-main-pancreatic-duct', 'children': [], 'synonymLabels': [], 'label': 'periductal capillary of main pancreatic duct'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_peritonsillar-plexus-of-veins': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_peritonsillar-plexus-of-veins', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_peritonsillar-plexus-of-veins', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001981', 'children': [], 'synonymLabels': [], 'label': 'peritonsillar plexus of veins'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_perpendicular-plate-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_perpendicular-plate-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_perpendicular-plate-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'perpendicular plate of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_petrotympanic-fissure-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_petrotympanic-fissure-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_petrotympanic-fissure-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'petrotympanic fissure of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk', 'parent': 'http://purl.org/sig/ont/fma/fma49497', 'children': ['https://purl.org/ccf/ASCTB-TEMP_eustachian-branch-of-ascending-pharyngeal-artery', 'https://purl.org/ccf/ASCTB-TEMP_inferior-pharyngeal-artery', 'https://purl.org/ccf/ASCTB-TEMP_middle-pharyngeal-artery', 'https://purl.org/ccf/ASCTB-TEMP_superior-pharyngeal-artery'], 'synonymLabels': [], 'label': 'pharyngeal trunk'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_plantar-interosseous-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_plantar-interosseous-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_plantar-interosseous-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'children': [], 'synonymLabels': [], 'label': 'plantar interosseous muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-ampulla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-ampulla'], 'synonymLabels': [], 'label': 'plica of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-infundibulum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-infundibulum'], 'synonymLabels': [], 'label': 'plica of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-intramural-segment'], 'synonymLabels': [], 'label': 'plica of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_plica-of-fallopian-tube-isthmus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosa-of-fallopian-tube-isthmus'], 'synonymLabels': [], 'label': 'plica of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_post-alveolar-capillary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_post-alveolar-capillary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_post-alveolar-capillary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-venule', 'children': [], 'synonymLabels': [], 'label': 'post-alveolar capillary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_post-sheath-open-capillary-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_post-sheath-open-capillary-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_post-sheath-open-capillary-of-spleen', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen', 'children': [], 'synonymLabels': [], 'label': 'post-sheath open capillary of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001298', 'http://purl.obolibrary.org/obo/UBERON_0001372', 'http://purl.org/sig/ont/fma/fma15569', 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle'], 'synonymLabels': [], 'label': 'posterior abdominal wall muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-accessory-saphenous-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-accessory-saphenous-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-accessory-saphenous-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001363', 'children': [], 'synonymLabels': [], 'label': 'posterior accessory saphenous vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-arch-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-arch-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-arch-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'posterior arch of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-obturator-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-obturator-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-obturator-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001314', 'children': [], 'synonymLabels': [], 'label': 'posterior branch of obturator artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-retromandibular-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-retromandibular-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-branch-of-retromandibular-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001101', 'children': [], 'synonymLabels': [], 'label': 'posterior branch of retromandibular vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-clinoid-process-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-clinoid-process-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-clinoid-process-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'posterior clinoid process of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-ethmoidal-foramen-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-ethmoidal-foramen-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-ethmoidal-foramen-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'posterior ethmoidal foramen of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-extrathoracic-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-extrathoracic-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-extrathoracic-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma276805', 'children': ['https://purl.org/ccf/ASCTB-TEMP_deep-lymph-node-of-neck', 'http://purl.org/sig/ont/fma/fma14187'], 'synonymLabels': [], 'label': 'posterior extrathoracic lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-gluteal-line-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-gluteal-line-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-gluteal-line-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'posterior gluteal line of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-inferior-iliac-spine-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-inferior-iliac-spine-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-inferior-iliac-spine-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'posterior inferior iliac spine of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-internal-frontal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-internal-frontal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-internal-frontal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'posterior internal frontal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-interosseous-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-interosseous-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-interosseous-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel-2'], 'synonymLabels': [], 'label': 'posterior interosseous lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-lateral-nasal-branch-of-sphenopalatine-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-lateral-nasal-branch-of-sphenopalatine-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-lateral-nasal-branch-of-sphenopalatine-artery', 'parent': 'http://purl.org/sig/ont/fma/fma49804', 'children': [], 'synonymLabels': [], 'label': 'posterior lateral nasal branch of sphenopalatine artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-radicular-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-radicular-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-radicular-vein', 'parent': 'http://purl.org/sig/ont/fma/fma76736', 'children': ['http://purl.org/sig/ont/fma/fma70893', 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-spinal-vein'], 'synonymLabels': [], 'label': 'posterior radicular vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-sacral-foramina-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-sacral-foramina-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-sacral-foramina-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'posterior sacral foramina of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-segmental-medullary-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-segmental-medullary-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-segmental-medullary-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery', 'children': [], 'synonymLabels': [], 'label': 'posterior segmental medullary artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-superior-iliac-spine-of-ilium-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-superior-iliac-spine-of-ilium-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-superior-iliac-spine-of-ilium-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'posterior superior iliac spine of ilium of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-tubercle-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-tubercle-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-tubercle-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'posterior tubercle of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterior-vestibular-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-vestibular-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterior-vestibular-artery', 'parent': 'http://purl.org/sig/ont/fma/fma52242', 'children': [], 'synonymLabels': [], 'label': 'posterior vestibular artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterolateral-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035422', 'children': [], 'synonymLabels': [], 'label': 'posterolateral artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_posterolateral-spinal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-spinal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_posterolateral-spinal-vein', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-radicular-vein', 'children': ['https://purl.org/ccf/ASCTB-TEMP_intramedullary-radial-vein-3'], 'synonymLabels': [], 'label': 'posterolateral spinal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_postglenoid-tubercle-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_postglenoid-tubercle-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_postglenoid-tubercle-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'postglenoid tubercle of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pre-alveolar-capillary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pre-alveolar-capillary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pre-alveolar-capillary', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-arteriole', 'children': ['https://purl.org/ccf/ASCTB-TEMP_alveolar-capillary'], 'synonymLabels': [], 'label': 'pre-alveolar capillary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pre-selection-antral-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pre-selection-antral-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pre-selection-antral-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'children': [], 'synonymLabels': [], 'label': 'pre-selection antral follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001305', 'children': ['https://purl.org/ccf/ASCTB-TEMP_multilayer-ovarian-follicle', 'http://purl.obolibrary.org/obo/UBERON_0000035', 'http://purl.obolibrary.org/obo/UBERON_0003981', 'http://purl.obolibrary.org/obo/UBERON_0000036', 'https://purl.org/ccf/ASCTB-TEMP_transitional-primary-ovarian-follicle', 'https://purl.org/ccf/ASCTB-TEMP_transitional-primordial-ovarian-follicle'], 'synonymLabels': [], 'label': 'preantral follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_prostatic-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_prostatic-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_prostatic-arteriole', 'parent': 'http://purl.org/sig/ont/fma/fma20966', 'children': ['http://purl.org/sig/ont/fma/fma280966'], 'synonymLabels': [], 'label': 'prostatic arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_prostatic-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_prostatic-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_prostatic-venule', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009042', 'children': [], 'synonymLabels': [], 'label': 'prostatic venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygoid-canal-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-canal-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-canal-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'pterygoid canal of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fossa-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fossa-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fossa-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'pterygoid fossa of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fovea-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fovea-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-fovea-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'pterygoid fovea of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygoid-hamulus-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-hamulus-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygoid-hamulus-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'pterygoid hamulus of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygovaginal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygovaginal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygovaginal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superior-pharyngeal-artery', 'children': [], 'synonymLabels': [], 'label': 'pterygovaginal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pteryopharyngeal-part-of-superior-pharyngeal-constrictor-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pteryopharyngeal-part-of-superior-pharyngeal-constrictor-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pteryopharyngeal-part-of-superior-pharyngeal-constrictor-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma46621', 'children': [], 'synonymLabels': [], 'label': 'pteryopharyngeal part of superior pharyngeal constrictor muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pubic-body-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-body-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-body-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'pubic body of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pubic-crest-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-crest-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-crest-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'pubic crest of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pubic-symphysis-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-symphysis-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-symphysis-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'pubic symphysis of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pubic-tubercle-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-tubercle-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pubic-tubercle-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'pubic tubercle of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_puboanalis-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_puboanalis-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_puboanalis-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': [], 'label': 'puboanalis muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_puboperineales-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_puboperineales-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_puboperineales-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-floor-muscle', 'children': [], 'synonymLabels': [], 'label': 'puboperineales muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pulmonary-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pulmonary-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pulmonary-venule', 'parent': 'http://purl.org/sig/ont/fma/fma9413', 'children': ['https://purl.org/ccf/ASCTB-TEMP_bronchial-capillary-2', 'https://purl.org/ccf/ASCTB-TEMP_intra-acinar-venule'], 'synonymLabels': [], 'label': 'pulmonary venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_radial-artery-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_radial-artery-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_radial-artery-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015173', 'children': ['http://purl.obolibrary.org/obo/UBERON_0015171'], 'synonymLabels': [], 'label': 'radial artery of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_radial-fossa-of-humerus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_radial-fossa-of-humerus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_radial-fossa-of-humerus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': [], 'label': 'radial fossa of humerus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_radial-groove-of-humerus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_radial-groove-of-humerus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_radial-groove-of-humerus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000976', 'children': [], 'synonymLabels': [], 'label': 'radial groove of humerus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm', 'children': ['https://purl.org/ccf/ASCTB-TEMP_index-finger-lateral-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_index-finger-medial-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-lateral-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel'], 'synonymLabels': [], 'label': 'radial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_radial-tuberosity-of-radius': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_radial-tuberosity-of-radius', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_radial-tuberosity-of-radius', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': [], 'label': 'radial tuberosity of radius'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_rectosigmoid-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_rectosigmoid-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_rectosigmoid-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001215', 'children': [], 'synonymLabels': [], 'label': 'rectosigmoid vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_rectus-capitius-posterior-minor-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_rectus-capitius-posterior-minor-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_rectus-capitius-posterior-minor-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma71439', 'children': [], 'synonymLabels': [], 'label': 'rectus capitius posterior minor muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_rectus-capitus-anterior-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_rectus-capitus-anterior-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_rectus-capitus-anterior-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_anterior-vertebral-muscle', 'children': [], 'synonymLabels': [], 'label': 'rectus capitus anterior muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_recurrent-muscular-branch-of-submucosal-artery-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_recurrent-muscular-branch-of-submucosal-artery-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_recurrent-muscular-branch-of-submucosal-artery-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-artery-of-colon', 'children': [], 'synonymLabels': [], 'label': 'recurrent muscular branch of submucosal artery of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_red-pulp-venule-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-venule-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-venule-of-spleen', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010400', 'children': ['http://purl.obolibrary.org/obo/UBERON_0003910'], 'synonymLabels': [], 'label': 'red pulp venule of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_red-pulp-white-pulp-border': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-white-pulp-border', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_red-pulp-white-pulp-border', 'parent': 'http://purl.obolibrary.org/obo/UBERON_1000023', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005353'], 'synonymLabels': [], 'label': 'red pulp-white pulp border'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_posterior-abdominal-wall-muscle', 'children': ['https://purl.org/ccf/ASCTB-TEMP_costal-part-of-respiratory-diaphragm-muscle', 'https://purl.org/ccf/ASCTB-TEMP_left-crus-of-lumbar-part-of-respiratory-diaphragm-muscle', 'https://purl.org/ccf/ASCTB-TEMP_right-crus-of-lumbar-part-of-respiratory-diaphragm-muscle', 'https://purl.org/ccf/ASCTB-TEMP_sternal-part-of-respiratory-diaphragm-muscle'], 'synonymLabels': [], 'label': 'respiratory diaphragm muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_retropectoral-lymph-vessel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_retropectoral-lymph-vessel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_retropectoral-lymph-vessel', 'parent': 'http://purl.org/sig/ont/fma/fma12252', 'children': [], 'synonymLabels': [], 'label': 'retropectoral lymph vessel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-body-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-body-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-body-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001297'], 'synonymLabels': [], 'label': 'right anterior body of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-fundus-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-fundus-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-fundus-of-uterus', 'parent': 'http://purl.org/sig/ont/fma/fma17561', 'children': [], 'synonymLabels': [], 'label': 'right anterior fundus of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015482', 'children': ['http://purl.org/sig/ont/fma/fma70443', 'http://purl.org/sig/ont/fma/fma70442'], 'synonymLabels': [], 'label': 'right anterior hepatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein', 'parent': 'http://purl.org/sig/ont/fma/fma15421', 'children': [], 'synonymLabels': [], 'label': 'right anterior hepatic portal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-hepatic-portal-vein-2', 'parent': 'http://purl.org/sig/ont/fma/fma15420', 'children': [], 'synonymLabels': [], 'label': 'right anterior hepatic portal vein #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-lower-uterine-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'children': [], 'synonymLabels': [], 'label': 'right anterior lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-anterior-mediastinal-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-mediastinal-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-anterior-mediastinal-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma5832', 'children': [], 'synonymLabels': [], 'label': 'right anterior mediastinal lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-artery-of-caudate-lobe': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-artery-of-caudate-lobe', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-artery-of-caudate-lobe', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015482', 'children': [], 'synonymLabels': [], 'label': 'right artery of caudate lobe'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-collecting-lymph-trunk-of-lymphatics-of-testicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-collecting-lymph-trunk-of-lymphatics-of-testicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-collecting-lymph-trunk-of-lymphatics-of-testicle', 'parent': 'http://purl.org/sig/ont/fma/fma323951', 'children': [], 'synonymLabels': [], 'label': 'right collecting lymph trunk of lymphatics of testicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-crus-of-lumbar-part-of-respiratory-diaphragm-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-crus-of-lumbar-part-of-respiratory-diaphragm-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-crus-of-lumbar-part-of-respiratory-diaphragm-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle', 'children': [], 'synonymLabels': [], 'label': 'right crus of lumbar part of respiratory diaphragm muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-lateral-aortic-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-lateral-aortic-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-lateral-aortic-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma5841', 'children': [], 'synonymLabels': [], 'label': 'right lateral aortic lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-posterior-body-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-body-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-body-of-uterus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009853', 'children': [], 'synonymLabels': [], 'label': 'right posterior body of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-posterior-fundus-of-uterus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-fundus-of-uterus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-fundus-of-uterus', 'parent': 'http://purl.org/sig/ont/fma/fma17561', 'children': [], 'synonymLabels': [], 'label': 'right posterior fundus of uterus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015482', 'children': ['http://purl.org/sig/ont/fma/fma70446', 'http://purl.org/sig/ont/fma/fma70445'], 'synonymLabels': [], 'label': 'right posterior hepatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein', 'parent': 'http://purl.org/sig/ont/fma/fma15424', 'children': [], 'synonymLabels': [], 'label': 'right posterior hepatic portal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-hepatic-portal-vein-2', 'parent': 'http://purl.org/sig/ont/fma/fma15423', 'children': [], 'synonymLabels': [], 'label': 'right posterior hepatic portal vein #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_right-posterior-lower-uterine-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-lower-uterine-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_right-posterior-lower-uterine-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lower-uterine-segment', 'children': [], 'synonymLabels': [], 'label': 'right posterior lower uterine segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-fiber': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-fiber', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-fiber', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009967', 'children': [], 'synonymLabels': [], 'label': 'ring fiber'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'ring finger lateral lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'ring finger lateral lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'ring finger lateral lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'ring finger medial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'ring finger medial lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'ring finger medial lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-apex-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-apex-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-apex-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral apex of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-canal-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-canal-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-canal-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral canal of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-cornu-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-cornu-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-cornu-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral cornu of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-hiatus-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-hiatus-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-hiatus-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral hiatus of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-promontory-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-promontory-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-promontory-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral promontory of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-spine-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-spine-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-spine-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral spine of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-tuberosity-of-sacrum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-tuberosity-of-sacrum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-tuberosity-of-sacrum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003690', 'children': [], 'synonymLabels': [], 'label': 'sacral tuberosity of sacrum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_scalene-tubercle-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_scalene-tubercle-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_scalene-tubercle-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'scalene tubercle of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_scaphoid-tubercle-of-scaphoid': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_scaphoid-tubercle-of-scaphoid', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_scaphoid-tubercle-of-scaphoid', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001427', 'children': [], 'synonymLabels': [], 'label': 'scaphoid tubercle of scaphoid'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_scapular-neck-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_scapular-neck-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_scapular-neck-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'scapular neck of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_scapular-notch-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_scapular-notch-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_scapular-notch-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'scapular notch of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_scapular-spine-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_scapular-spine-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_scapular-spine-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'scapular spine of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_second-common-plantar-digital-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_second-common-plantar-digital-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_second-common-plantar-digital-artery', 'parent': 'http://purl.org/sig/ont/fma/fma43960', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-second-digit-of-foot', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-third-digit-of-foot'], 'synonymLabels': [], 'label': 'second common plantar digital artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_second-palmar-metacarpal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_second-palmar-metacarpal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_second-palmar-metacarpal-artery', 'parent': 'http://purl.org/sig/ont/fma/fma22838', 'children': [], 'synonymLabels': [], 'label': 'second palmar metacarpal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_second-posterior-perforating-branch-of-plantar-arch': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_second-posterior-perforating-branch-of-plantar-arch', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_second-posterior-perforating-branch-of-plantar-arch', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': [], 'synonymLabels': [], 'label': 'second posterior perforating branch of plantar arch'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland', 'parent': 'http://purl.org/sig/ont/fma/fma0327575', 'children': [], 'synonymLabels': [], 'label': 'secondary capillary plexus of anterior pituitary gland'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_secondary-capillary-plexus-of-anterior-pituitary-gland-2', 'parent': 'http://purl.org/sig/ont/fma/fma0327576', 'children': [], 'synonymLabels': [], 'label': 'secondary capillary plexus of anterior pituitary gland #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_secondary-follicle-arteriole-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_secondary-follicle-arteriole-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_secondary-follicle-arteriole-of-spleen', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010401', 'children': [], 'synonymLabels': [], 'label': 'secondary follicle arteriole of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-cervical-intertransversarii-muscle', 'https://purl.org/ccf/ASCTB-TEMP_interspinales-cervicalis-muscle', 'http://purl.org/sig/ont/fma/fma71307', 'http://purl.org/sig/ont/fma/fma71308', 'https://purl.org/ccf/ASCTB-TEMP_intertransversarii-laterales-lumborum-muscle', 'https://purl.org/ccf/ASCTB-TEMP_lateral-posterior-cervical-intertransversarii-muscle', 'https://purl.org/ccf/ASCTB-TEMP_medial-lumbar-intertransversarii-muscle', 'https://purl.org/ccf/ASCTB-TEMP_medial-posterior-cervical-intertransversarii-muscle', 'https://purl.org/ccf/ASCTB-TEMP_thoracic-intertransversarii-muscle'], 'synonymLabels': [], 'label': 'segmental back muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-branch-of-lobar-artery-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-branch-of-lobar-artery-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-branch-of-lobar-artery-of-spleen', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_lobar-artery-of-spleen', 'children': [], 'synonymLabels': [], 'label': 'segmental branch of lobar artery of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0015481', 'children': ['https://purl.org/ccf/ASCTB-TEMP_hepatic-arteriole'], 'synonymLabels': [], 'label': 'segmental hepatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-hepatic-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011955', 'children': [], 'synonymLabels': [], 'label': 'segmental hepatic vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-renal-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-renal-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-renal-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001140', 'children': ['http://purl.obolibrary.org/obo/UBERON_0009887'], 'synonymLabels': [], 'label': 'segmental renal vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012322', 'children': ['http://purl.org/sig/ont/fma/fma4183', 'https://purl.org/ccf/ASCTB-TEMP_anterior-segmental-medullary-artery', 'http://purl.org/sig/ont/fma/fma4184', 'https://purl.org/ccf/ASCTB-TEMP_posterior-segmental-medullary-artery'], 'synonymLabels': [], 'label': 'segmental spinal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-2', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012321', 'children': [], 'synonymLabels': [], 'label': 'segmental spinal artery #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-3', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006636', 'children': [], 'synonymLabels': [], 'label': 'segmental spinal artery #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-4': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-4', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-4', 'parent': 'http://purl.org/sig/ont/fma/fma4176', 'children': [], 'synonymLabels': [], 'label': 'segmental spinal artery #4'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-5': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-5', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_segmental-spinal-artery-5', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001535', 'children': [], 'synonymLabels': [], 'label': 'segmental spinal artery #5'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_selection-antral-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_selection-antral-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_selection-antral-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_antral-follicle', 'children': [], 'synonymLabels': [], 'label': 'selection antral follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sella-turcica-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sella-turcica-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sella-turcica-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'sella turcica of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_seminal-vesicle-arterial-branches-of-prostatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_seminal-vesicle-arterial-branches-of-prostatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_seminal-vesicle-arterial-branches-of-prostatic-artery', 'parent': 'http://purl.org/sig/ont/fma/fma20966', 'children': [], 'synonymLabels': [], 'label': 'seminal vesicle arterial branches of prostatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_septal-nuclei': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_septal-nuclei', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_septal-nuclei', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002743', 'children': [], 'synonymLabels': [], 'label': 'septal nuclei'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-arteries': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-arteries', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-arteries', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002094', 'children': [], 'synonymLabels': [], 'label': 'septal perforating arteries'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery', 'parent': 'http://purl.org/sig/ont/fma/fma3862', 'children': [], 'synonymLabels': [], 'label': 'septal perforating artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_septal-perforating-artery-2', 'parent': 'http://purl.org/sig/ont/fma/fma3840', 'children': [], 'synonymLabels': [], 'label': 'septal perforating artery #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_serosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_serosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_serosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002116', 'children': [], 'synonymLabels': [], 'label': 'serosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-ampulla', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla', 'children': [], 'synonymLabels': [], 'label': 'serosa of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-infundibulum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum', 'children': [], 'synonymLabels': [], 'label': 'serosa of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment', 'children': [], 'synonymLabels': [], 'label': 'serosa of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-isthmus', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus', 'children': [], 'synonymLabels': [], 'label': 'serosa of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012331', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lymphatic-of-mesosalpinx', 'https://purl.org/ccf/ASCTB-TEMP_nerve-of-mesosalpinx', 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-mesosalpinx'], 'synonymLabels': [], 'label': 'serous membrane lining of mesosalpinx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004337', 'children': [], 'synonymLabels': [], 'label': 'shaft of first distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-proximal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-proximal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-first-proximal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004338', 'children': [], 'synonymLabels': [], 'label': 'shaft of first proximal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_shaft-of-radius-of-radius': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-radius-of-radius', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-radius-of-radius', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001423', 'children': [], 'synonymLabels': [], 'label': 'shaft of radius of radius'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_shaft-of-ulna-of-ulna': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-ulna-of-ulna', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_shaft-of-ulna-of-ulna', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': [], 'label': 'shaft of ulna of ulna'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001250', 'children': [], 'synonymLabels': [], 'label': 'sheathed capillary'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_non-penicillar-arteriole-of-spleen', 'children': ['https://purl.org/ccf/ASCTB-TEMP_post-sheath-open-capillary-of-spleen', 'https://purl.org/ccf/ASCTB-TEMP_superficial-white-pulp-capillary-of-spleen'], 'synonymLabels': [], 'label': 'sheathed capillary of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen-2', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013132', 'children': [], 'synonymLabels': [], 'label': 'sheathed capillary of spleen #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_short-branch-of-vasa-recta-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_short-branch-of-vasa-recta-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_short-branch-of-vasa-recta-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-colon', 'children': ['https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon-2'], 'synonymLabels': [], 'label': 'short branch of vasa recta of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_small-thyroid-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_small-thyroid-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_small-thyroid-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001104', 'children': [], 'synonymLabels': [], 'label': 'small thyroid vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sole-of-foot-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001383', 'children': ['http://purl.org/sig/ont/fma/fma37382', 'http://purl.obolibrary.org/obo/UBERON_0008464', 'http://purl.obolibrary.org/obo/UBERON_0014379', 'http://purl.org/sig/ont/fma/fma37457', 'http://purl.obolibrary.org/obo/UBERON_0014380', 'http://purl.obolibrary.org/obo/UBERON_0011022', 'http://purl.org/sig/ont/fma/fma37453', 'https://purl.org/ccf/ASCTB-TEMP_plantar-interosseous-muscle', 'http://purl.org/sig/ont/fma/fma37452'], 'synonymLabels': [], 'label': 'sole of foot muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_soleal-line-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_soleal-line-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_soleal-line-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'soleal line of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_spermatic-cord-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_spermatic-cord-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_spermatic-cord-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002378', 'children': ['http://purl.obolibrary.org/obo/UBERON_0008488'], 'synonymLabels': [], 'label': 'spermatic cord muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sphenoid-sinus-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sphenoid-sinus-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sphenoid-sinus-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'sphenoid sinus of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sphenopalatine-sinus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sphenopalatine-sinus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sphenopalatine-sinus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0035231', 'children': [], 'synonymLabels': [], 'label': 'sphenopalatine sinus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sphincter-urethrae-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sphincter-urethrae-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sphincter-urethrae-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002379', 'children': [], 'synonymLabels': [], 'label': 'sphincter urethrae muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_spinotransversales-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_spinotransversales-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_spinotransversales-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'children': ['https://purl.org/ccf/ASCTB-TEMP_splenius-capitus-muscle', 'http://purl.org/sig/ont/fma/fma22681'], 'synonymLabels': [], 'label': 'spinotransversales muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'spinous process of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_spinous-process-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'spinous process of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stroma': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stroma', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stroma', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0009967', 'children': [], 'synonymLabels': [], 'label': 'splenic red pulp stroma'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-venules': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-venules', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-venules', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001250', 'children': [], 'synonymLabels': [], 'label': 'splenic venules'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenius-capitus-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenius-capitus-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenius-capitus-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_spinotransversales-muscle', 'children': [], 'synonymLabels': [], 'label': 'splenius capitus muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-angle-of-sternum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-angle-of-sternum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-angle-of-sternum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': [], 'label': 'sternal angle of sternum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-body-of-sternum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-body-of-sternum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-body-of-sternum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': [], 'label': 'sternal body of sternum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eighth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eighth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eighth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0010757', 'children': [], 'synonymLabels': [], 'label': 'sternal end of eighth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eleventh-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eleventh-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-eleventh-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004610', 'children': [], 'synonymLabels': [], 'label': 'sternal end of eleventh rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fifth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fifth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fifth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004605', 'children': [], 'synonymLabels': [], 'label': 'sternal end of fifth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-first-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-first-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-first-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004601', 'children': [], 'synonymLabels': [], 'label': 'sternal end of first rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fourth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fourth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-fourth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004604', 'children': [], 'synonymLabels': [], 'label': 'sternal end of fourth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-ninth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-ninth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-ninth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004608', 'children': [], 'synonymLabels': [], 'label': 'sternal end of ninth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-second-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-second-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-second-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004602', 'children': [], 'synonymLabels': [], 'label': 'sternal end of second rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-seventh-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-seventh-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-seventh-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004607', 'children': [], 'synonymLabels': [], 'label': 'sternal end of seventh rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-sixth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-sixth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-sixth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004606', 'children': [], 'synonymLabels': [], 'label': 'sternal end of sixth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-tenth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-tenth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-tenth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004609', 'children': [], 'synonymLabels': [], 'label': 'sternal end of tenth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-third-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-third-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-third-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004603', 'children': [], 'synonymLabels': [], 'label': 'sternal end of third rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-twelfth-rib': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-twelfth-rib', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-end-of-twelfth-rib', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004611', 'children': [], 'synonymLabels': [], 'label': 'sternal end of twelfth rib'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-part-of-respiratory-diaphragm-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-part-of-respiratory-diaphragm-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-part-of-respiratory-diaphragm-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_respiratory-diaphragm-muscle', 'children': [], 'synonymLabels': [], 'label': 'sternal part of respiratory diaphragm muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternal-region-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-region-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternal-region-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014477', 'children': ['http://purl.obolibrary.org/obo/UBERON_0000975'], 'synonymLabels': [], 'label': 'sternal region bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sternocostal-head-of-pectoralis-major-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sternocostal-head-of-pectoralis-major-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sternocostal-head-of-pectoralis-major-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002381', 'children': [], 'synonymLabels': [], 'label': 'sternocostal head of pectoralis major muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_styloid-process-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_styloid-process-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_styloid-process-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'styloid process of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-branch-of-occipital-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-branch-of-occipital-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-branch-of-occipital-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001613', 'children': [], 'synonymLabels': [], 'label': 'stylomastoid branch of occipital artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-foramen-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-foramen-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stylomastoid-foramen-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'stylomastoid foramen of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subcapsule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subcapsule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subcapsule', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004641', 'children': [], 'synonymLabels': [], 'label': 'subcapsule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subclavicular-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subclavicular-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subclavicular-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma12252', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-lymphatic-pathway-of-upper-arm-2'], 'synonymLabels': [], 'label': 'subclavicular lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sublingual-fossa-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sublingual-fossa-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sublingual-fossa-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'sublingual fossa of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submandibular-fossa-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-fossa-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-fossa-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'submandibular fossa of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submucosa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submucosa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submucosa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004946', 'children': [], 'synonymLabels': [], 'label': 'submucosa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submucosal-arteriole-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-arteriole-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-arteriole-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-artery-of-colon', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosal-arteriole-of-colon'], 'synonymLabels': [], 'label': 'submucosal arteriole of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submucosal-artery-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-artery-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-artery-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_long-branch-of-vasa-recta-of-colon', 'children': ['https://purl.org/ccf/ASCTB-TEMP_recurrent-muscular-branch-of-submucosal-artery-of-colon', 'https://purl.org/ccf/ASCTB-TEMP_submucosal-arteriole-of-colon'], 'synonymLabels': [], 'label': 'submucosal artery of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submucosal-plexus-of-meissner': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-plexus-of-meissner', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-plexus-of-meissner', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004946', 'children': [], 'synonymLabels': [], 'label': 'submucosal plexus of meissner'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submucosal-vein-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-vein-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-vein-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine', 'children': ['https://purl.org/ccf/ASCTB-TEMP_submucosal-venule-of-colon'], 'synonymLabels': [], 'label': 'submucosal vein of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submucosal-venule-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-venule-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-venule-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_submucosal-vein-of-colon', 'children': ['https://purl.org/ccf/ASCTB-TEMP_mucosal-venule-of-colon'], 'synonymLabels': [], 'label': 'submucosal venule of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subscapular-fossa-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subscapular-fossa-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subscapular-fossa-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'subscapular fossa of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_long-branch-of-vasa-recta-of-colon', 'children': [], 'synonymLabels': [], 'label': 'subserous artery of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subserous-artery-of-colon-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_short-branch-of-vasa-recta-of-colon', 'children': [], 'synonymLabels': [], 'label': 'subserous artery of colon #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subserous-vein-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subserous-vein-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subserous-vein-of-colon', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine', 'children': [], 'synonymLabels': [], 'label': 'subserous vein of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sulcal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sulcal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sulcal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005431', 'children': [], 'synonymLabels': [], 'label': 'sulcal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supercilary-arch-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supercilary-arch-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supercilary-arch-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'supercilary arch of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-back-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002324', 'children': ['http://purl.obolibrary.org/obo/UBERON_0001112', 'http://purl.obolibrary.org/obo/UBERON_0005461', 'http://purl.org/sig/ont/fma/fma13379', 'http://purl.org/sig/ont/fma/fma13380', 'http://purl.obolibrary.org/obo/UBERON_0002380'], 'synonymLabels': [], 'label': 'superficial back muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-branch-of-lateral-plantar-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-branch-of-lateral-plantar-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-branch-of-lateral-plantar-artery', 'parent': 'http://purl.org/sig/ont/fma/fma43926', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-fifth-digit-of-foot'], 'synonymLabels': [], 'label': 'superficial branch of lateral plantar artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-submandibular-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-submandibular-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-submandibular-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001104', 'children': [], 'synonymLabels': [], 'label': 'superficial submandibular vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-ulnar-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_epitrochlear-lymph-node', 'children': ['https://purl.org/ccf/ASCTB-TEMP_little-finger-lateral-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_little-finger-medial-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_middle-finger-medial-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-lateral-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_ring-finger-medial-lymphatic-channel'], 'synonymLabels': [], 'label': 'superficial ulnar lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-white-pulp-capillary-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-white-pulp-capillary-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-white-pulp-capillary-of-spleen', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_sheathed-capillary-of-spleen', 'children': ['https://purl.org/ccf/ASCTB-TEMP_branch-of-superficial-white-pulp-capillary-of-spleen'], 'synonymLabels': [], 'label': 'superficial white pulp capillary of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eighth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eighth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eighth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of eighth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of fifth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of fifth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fifth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of fifth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of first lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-first-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of first thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of fourth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of fourth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-fourth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of fourth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-ninth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-ninth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-ninth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of ninth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of second lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-second-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of second thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of seventh cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-seventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of seventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of sixth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-sixth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of sixth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-tenth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-tenth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-tenth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of tenth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of third cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of third lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-third-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of third thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-twelfth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-twelfth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-facet-of-twelfth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': [], 'label': 'superior articular facet of twelfth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'superior articular process of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-articular-process-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'superior articular process of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-costal-facet-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-costal-facet-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-costal-facet-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'superior costal facet of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-head-of-lateral-pterygoid-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-head-of-lateral-pterygoid-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-head-of-lateral-pterygoid-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006719', 'children': [], 'synonymLabels': [], 'label': 'superior head of lateral pterygoid muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-lobar-artery-of-spleen': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-lobar-artery-of-spleen', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-lobar-artery-of-spleen', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001194', 'children': [], 'synonymLabels': [], 'label': 'superior lobar artery of spleen'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-longitudinal-lingual-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-longitudinal-lingual-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-longitudinal-lingual-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001576', 'children': [], 'synonymLabels': [], 'label': 'superior longitudinal lingual muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-mental-spine-of-mandible': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-mental-spine-of-mandible', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-mental-spine-of-mandible', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001684', 'children': [], 'synonymLabels': [], 'label': 'superior mental spine of mandible'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-nasal-concha-of-ethmoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-nasal-concha-of-ethmoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-nasal-concha-of-ethmoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001679', 'children': [], 'synonymLabels': [], 'label': 'superior nasal concha of ethmoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-nuchal-line-of-squamous-part-of-occipital-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-nuchal-line-of-squamous-part-of-occipital-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-nuchal-line-of-squamous-part-of-occipital-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001676', 'children': [], 'synonymLabels': [], 'label': 'superior nuchal line of squamous part of occipital bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-orbital-fissure-of-sphenoid-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-orbital-fissure-of-sphenoid-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-orbital-fissure-of-sphenoid-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001677', 'children': [], 'synonymLabels': [], 'label': 'superior orbital fissure of sphenoid bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-parietal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-parietal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-parietal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001624', 'children': [], 'synonymLabels': [], 'label': 'superior parietal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-pharyngeal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-pharyngeal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-pharyngeal-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_pharyngeal-trunk', 'children': ['https://purl.org/ccf/ASCTB-TEMP_pterygovaginal-artery'], 'synonymLabels': [], 'label': 'superior pharyngeal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-pubic-ramus-of-pubis-of-os-coxa': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-pubic-ramus-of-pubis-of-os-coxa', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-pubic-ramus-of-pubis-of-os-coxa', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001272', 'children': [], 'synonymLabels': [], 'label': 'superior pubic ramus of pubis of os coxa'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-ulnar-lymph-node', 'parent': 'http://purl.org/sig/ont/fma/fma234924', 'children': ['https://purl.org/ccf/ASCTB-TEMP_anterior-interosseous-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_deep-ulnar-lymphatic-channel', 'https://purl.org/ccf/ASCTB-TEMP_posterior-interosseous-lymphatic-channel'], 'synonymLabels': [], 'label': 'superior ulnar lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-uterine-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-uterine-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-uterine-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000995', 'children': [], 'synonymLabels': [], 'label': 'superior uterine vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-vein-of-sappey': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-vein-of-sappey', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-vein-of-sappey', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': [], 'label': 'superior vein of sappey'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'superior vertebral notch of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-vertebral-notch-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'superior vertebral notch of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supinator-fossa-of-ulna': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supinator-fossa-of-ulna', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supinator-fossa-of-ulna', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': [], 'label': 'supinator fossa of ulna'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supraescapular-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supraescapular-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supraescapular-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_supraspinatus-fossa-lymph-node', 'children': [], 'synonymLabels': [], 'label': 'supraescapular lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supraglenoid-tubercle-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supraglenoid-tubercle-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supraglenoid-tubercle-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'supraglenoid tubercle of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supramastoid-crest-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supramastoid-crest-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supramastoid-crest-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'supramastoid crest of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supraorbital-notch-or-foramen-of-frontal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supraorbital-notch-or-foramen-of-frontal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supraorbital-notch-or-foramen-of-frontal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000209', 'children': [], 'synonymLabels': [], 'label': 'supraorbital notch or foramen of frontal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supraspinatus-fossa-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supraspinatus-fossa-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supraspinatus-fossa-lymph-node', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-lymph-node-of-neck', 'children': ['https://purl.org/ccf/ASCTB-TEMP_supraescapular-lymphatic-channel'], 'synonymLabels': [], 'label': 'supraspinatus fossa lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_supraspinous-fossa-of-scapula': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_supraspinous-fossa-of-scapula', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_supraspinous-fossa-of-scapula', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0006849', 'children': [], 'synonymLabels': [], 'label': 'supraspinous fossa of scapula'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sustentaculum-tali-of-calcaneus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sustentaculum-tali-of-calcaneus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sustentaculum-tali-of-calcaneus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001450', 'children': [], 'synonymLabels': [], 'label': 'sustentaculum tali of calcaneus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_temporal-fossa-of-parietal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_temporal-fossa-of-parietal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_temporal-fossa-of-parietal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000210', 'children': [], 'synonymLabels': [], 'label': 'temporal fossa of parietal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tensor-fascia-latae-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tensor-fascia-latae-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tensor-fascia-latae-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002000', 'children': [], 'synonymLabels': [], 'label': 'tensor fascia latae muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tentorial-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tentorial-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tentorial-artery', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_meningohypophyseal-artery', 'children': [], 'synonymLabels': [], 'label': 'tentorial artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thalamus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thalamus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thalamus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0019264', 'children': [], 'synonymLabels': [], 'label': 'thalamus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_third-common-plantar-digital-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_third-common-plantar-digital-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_third-common-plantar-digital-artery', 'parent': 'http://purl.org/sig/ont/fma/fma43961', 'children': ['https://purl.org/ccf/ASCTB-TEMP_lateral-proper-plantar-digital-artery-of-third-digit-of-foot', 'https://purl.org/ccf/ASCTB-TEMP_medial-proper-plantar-digital-artery-of-fourth-digit-of-foot'], 'synonymLabels': [], 'label': 'third common plantar digital artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_third-palmar-metacarpal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_third-palmar-metacarpal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_third-palmar-metacarpal-artery', 'parent': 'http://purl.org/sig/ont/fma/fma22838', 'children': [], 'synonymLabels': [], 'label': 'third palmar metacarpal artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_third-posterior-perforating-branch-of-plantar-arch': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_third-posterior-perforating-branch-of-plantar-arch', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_third-posterior-perforating-branch-of-plantar-arch', 'parent': 'http://purl.org/sig/ont/fma/fma43942', 'children': [], 'synonymLabels': [], 'label': 'third posterior perforating branch of plantar arch'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thoracic-intertransversarii-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-intertransversarii-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-intertransversarii-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_segmental-back-muscle', 'children': [], 'synonymLabels': [], 'label': 'thoracic intertransversarii muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-wall-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002426', 'children': ['http://purl.obolibrary.org/obo/UBERON_0005441', 'http://purl.obolibrary.org/obo/UBERON_0008617', 'http://purl.obolibrary.org/obo/UBERON_0002403', 'https://purl.org/ccf/ASCTB-TEMP_levator-costarum-muscle', 'http://purl.obolibrary.org/obo/UBERON_0008618', 'http://purl.org/sig/ont/fma/fma9760'], 'synonymLabels': [], 'label': 'thoracic wall muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'thumb lateral lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'thumb lateral lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-lateral-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'thumb lateral lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'thumb medial lymphatic channel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-2', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_deep-radial-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'thumb medial lymphatic channel #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thumb-medial-lymphatic-channel-3', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_palmar-arch-lymphatic-channel', 'children': [], 'synonymLabels': [], 'label': 'thumb medial lymphatic channel #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thymic-arteriole': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thymic-arteriole', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thymic-arteriole', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0018243', 'children': ['http://purl.org/sig/ont/fma/fma280943'], 'synonymLabels': [], 'label': 'thymic arteriole'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thymic-venule': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thymic-venule', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thymic-venule', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001591', 'children': [], 'synonymLabels': [], 'label': 'thymic venule'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thyroepiglottic-part-of-thyroarytenoid-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thyroepiglottic-part-of-thyroarytenoid-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thyroepiglottic-part-of-thyroarytenoid-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma46588', 'children': [], 'synonymLabels': [], 'label': 'thyroepiglottic part of thyroarytenoid muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thyropharyngeal-part-of-inferior-pharyngeal-constrictor-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thyropharyngeal-part-of-inferior-pharyngeal-constrictor-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thyropharyngeal-part-of-inferior-pharyngeal-constrictor-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma46623', 'children': [], 'synonymLabels': [], 'label': 'thyropharyngeal part of inferior pharyngeal constrictor muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tibalis-anterior-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tibalis-anterior-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tibalis-anterior-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma22472', 'children': [], 'synonymLabels': [], 'label': 'tibalis anterior muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tibalis-posterior-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tibalis-posterior-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tibalis-posterior-muscle', 'parent': 'http://purl.org/sig/ont/fma/fma22474', 'children': [], 'synonymLabels': [], 'label': 'tibalis posterior muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tibial-plateau-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tibial-plateau-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tibial-plateau-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'tibial plateau of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tibial-tuberosity-of-tibia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tibial-tuberosity-of-tibia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tibial-tuberosity-of-tibia', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000979', 'children': [], 'synonymLabels': [], 'label': 'tibial tuberosity of tibia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tonsil-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-follicle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0002373', 'children': ['https://purl.org/ccf/ASCTB-TEMP_tonsil-secondary-follicle'], 'synonymLabels': [], 'label': 'tonsil follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-dark-zone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-dark-zone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-dark-zone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013688', 'children': [], 'synonymLabels': [], 'label': 'tonsil germinal center dark zone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-light-zone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-light-zone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-light-zone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0013688', 'children': [], 'synonymLabels': [], 'label': 'tonsil germinal center light zone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-mantle-zone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-mantle-zone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-mantle-zone', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-secondary-follicle', 'children': [], 'synonymLabels': [], 'label': 'tonsil germinal center mantle zone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tonsil-secondary-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-secondary-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-secondary-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-follicle', 'children': ['http://purl.obolibrary.org/obo/UBERON_0010754', 'https://purl.org/ccf/ASCTB-TEMP_tonsil-germinal-center-mantle-zone'], 'synonymLabels': [], 'label': 'tonsil secondary follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tonsil-t-cell-zone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-t-cell-zone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tonsil-t-cell-zone', 'parent': 'http://purl.org/sig/ont/fma/fma55221', 'children': [], 'synonymLabels': [], 'label': 'tonsil t cell zone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transitional-primary-ovarian-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transitional-primary-ovarian-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transitional-primary-ovarian-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'children': [], 'synonymLabels': [], 'label': 'transitional primary ovarian follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transitional-primordial-ovarian-follicle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transitional-primordial-ovarian-follicle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transitional-primordial-ovarian-follicle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_preantral-follicle', 'children': [], 'synonymLabels': [], 'label': 'transitional primordial ovarian follicle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transpectoral-lymph-vessel': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transpectoral-lymph-vessel', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transpectoral-lymph-vessel', 'parent': 'http://purl.org/sig/ont/fma/fma12252', 'children': [], 'synonymLabels': [], 'label': 'transpectoral lymph vessel'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001631', 'children': [], 'synonymLabels': [], 'label': 'transverse cervical lymph node'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-cervical-lymph-node-2', 'parent': 'http://purl.org/sig/ont/fma/fma5832', 'children': [], 'synonymLabels': [], 'label': 'transverse cervical lymph node #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eighth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eighth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eighth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of eighth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fifth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fifth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fifth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of fifth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-first-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-first-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-first-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of first thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fourth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fourth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-fourth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of fourth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-ninth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-ninth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-ninth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of ninth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-second-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-second-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-second-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of second thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-seventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-seventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-seventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of seventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-sixth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-sixth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-sixth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of sixth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-tenth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-tenth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-tenth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of tenth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-third-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-third-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-costal-facet-of-third-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': [], 'label': 'transverse costal facet of third thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'transverse foramen of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-foramen-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'transverse foramen of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001576', 'children': [], 'synonymLabels': [], 'label': 'transverse muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-nasal-root-vein': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-nasal-root-vein', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-nasal-root-vein', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0014686', 'children': [], 'synonymLabels': [], 'label': 'transverse nasal root vein'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-pancreatic-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-pancreatic-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-pancreatic-artery', 'parent': 'http://purl.org/sig/ont/fma/fma14787', 'children': [], 'synonymLabels': [], 'label': 'transverse pancreatic artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-coccyx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-coccyx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-coccyx', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001350', 'children': [], 'synonymLabels': [], 'label': 'transverse process of coccyx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'transverse process of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-process-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'transverse process of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transverse-ridges-of-sternum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-ridges-of-sternum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transverse-ridges-of-sternum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000975', 'children': [], 'synonymLabels': [], 'label': 'transverse ridges of sternum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_trigeminal-impression-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_trigeminal-impression-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_trigeminal-impression-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'trigeminal impression of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_trochlear-notch-of-ulna': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_trochlear-notch-of-ulna', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_trochlear-notch-of-ulna', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': [], 'label': 'trochlear notch of ulna'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fifth-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fifth-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fifth-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004314', 'children': [], 'synonymLabels': [], 'label': 'tuberosity of fifth distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-first-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-first-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-first-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004337', 'children': [], 'synonymLabels': [], 'label': 'tuberosity of first distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fourth-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fourth-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-fourth-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004313', 'children': [], 'synonymLabels': [], 'label': 'tuberosity of fourth distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-second-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-second-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-second-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004311', 'children': [], 'synonymLabels': [], 'label': 'tuberosity of second distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-third-distal-phalanx-of-hand': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-third-distal-phalanx-of-hand', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tuberosity-of-third-distal-phalanx-of-hand', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004312', 'children': [], 'synonymLabels': [], 'label': 'tuberosity of third distal phalanx of hand'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tympanic-caniliculus-of-petrous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tympanic-caniliculus-of-petrous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tympanic-caniliculus-of-petrous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'tympanic caniliculus of petrous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ulnar-tuberosity-of-ulna': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ulnar-tuberosity-of-ulna', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ulnar-tuberosity-of-ulna', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001424', 'children': [], 'synonymLabels': [], 'label': 'ulnar tuberosity of ulna'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ureter-vasculature': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ureter-vasculature', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ureter-vasculature', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0036376', 'children': [], 'synonymLabels': [], 'label': 'ureter vasculature'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-colon': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-colon', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-colon', 'parent': 'http://purl.org/sig/ont/fma/fma14824', 'children': ['https://purl.org/ccf/ASCTB-TEMP_long-branch-of-vasa-recta-of-colon', 'https://purl.org/ccf/ASCTB-TEMP_short-branch-of-vasa-recta-of-colon'], 'synonymLabels': [], 'label': 'vasa recta of colon'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-ileum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-ileum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-ileum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0005628', 'children': [], 'synonymLabels': [], 'label': 'vasa recta of ileum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-jejunum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-jejunum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasa-recta-of-jejunum', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_jejunal-arcade', 'children': ['http://purl.org/sig/ont/fma/fma264945'], 'synonymLabels': [], 'label': 'vasa recta of jejunum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-ampulla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'children': [], 'synonymLabels': [], 'label': 'vasculature of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-fimbria': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-fimbria', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-fimbria', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410010', 'children': [], 'synonymLabels': [], 'label': 'vasculature of fallopian tube fimbria'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-infundibulum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': [], 'synonymLabels': [], 'label': 'vasculature of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'children': [], 'synonymLabels': [], 'label': 'vasculature of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-fallopian-tube-isthmus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'children': [], 'synonymLabels': [], 'label': 'vasculature of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-mesosalpinx': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-mesosalpinx', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vasculature-of-mesosalpinx', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_serous-membrane-lining-of-mesosalpinx', 'children': [], 'synonymLabels': [], 'label': 'vasculature of mesosalpinx'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vein-of-burow': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vein-of-burow', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vein-of-burow', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001639', 'children': [], 'synonymLabels': [], 'label': 'vein of burow'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vein-of-ductus-deferens': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vein-of-ductus-deferens', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vein-of-ductus-deferens', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0000442', 'children': [], 'synonymLabels': [], 'label': 'vein of ductus deferens'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001219', 'children': ['https://purl.org/ccf/ASCTB-TEMP_submucosal-vein-of-colon', 'https://purl.org/ccf/ASCTB-TEMP_subserous-vein-of-colon'], 'synonymLabels': [], 'label': 'vena recta of large intestine'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-2', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410017', 'children': [], 'synonymLabels': [], 'label': 'vena recta of large intestine #2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-3': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-3', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-3', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001218', 'children': [], 'synonymLabels': [], 'label': 'vena recta of large intestine #3'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-4': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-4', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vena-recta-of-large-intestine-4', 'parent': 'http://purl.obolibrary.org/obo/UBERON_8410018', 'children': [], 'synonymLabels': [], 'label': 'vena recta of large intestine #4'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ventral-part-of-intertransversarii-laterales-lumborum-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ventral-part-of-intertransversarii-laterales-lumborum-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ventral-part-of-intertransversarii-laterales-lumborum-muscle', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intertransversarii-laterales-lumborum-muscle', 'children': [], 'synonymLabels': [], 'label': 'ventral part of intertransversarii laterales lumborum muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebra-prominens-of-seventh-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebra-prominens-of-seventh-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebra-prominens-of-seventh-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': [], 'label': 'vertebra prominens of seventh cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eighth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eighth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eighth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of eighth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of fifth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of fifth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fifth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of fifth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of first lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-first-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of first thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of fourth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of fourth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-fourth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of fourth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-ninth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-ninth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-ninth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of ninth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of second lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-second-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of second thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of seventh cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-seventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of seventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of sixth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-sixth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of sixth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-tenth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-tenth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-tenth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of tenth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of third cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of third lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-third-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of third thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-twelfth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-twelfth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-arch-of-twelfth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': [], 'label': 'vertebral arch of twelfth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eighth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eighth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eighth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0011050', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of eighth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eleventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eleventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-eleventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004635', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of eleventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004614', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of fifth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004621', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of fifth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fifth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004630', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of fifth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004617', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of first lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-first-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of first thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004613', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of fourth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004620', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of fourth lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-fourth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004629', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of fourth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-ninth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-ninth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-ninth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004633', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of ninth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004618', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of second lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-second-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004627', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of second thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004616', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of seventh cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-seventh-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004632', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of seventh thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004615', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of sixth cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-sixth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004631', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of sixth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-tenth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-tenth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-tenth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004634', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of tenth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004612', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of third cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-lumbar-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-lumbar-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-lumbar-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004619', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of third lumbar vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-third-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004628', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of third thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-twelfth-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-twelfth-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-body-of-twelfth-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004636', 'children': [], 'synonymLabels': [], 'label': 'vertebral body of twelfth thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001092', 'children': [], 'synonymLabels': [], 'label': 'vertebral foramen of first cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-thoracic-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-thoracic-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-first-thoracic-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0004626', 'children': [], 'synonymLabels': [], 'label': 'vertebral foramen of first thoracic vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-second-cervical-vertebra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-second-cervical-vertebra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertebral-foramen-of-second-cervical-vertebra', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001093', 'children': [], 'synonymLabels': [], 'label': 'vertebral foramen of second cervical vertebra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vertical-muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vertical-muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vertical-muscle', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001576', 'children': [], 'synonymLabels': [], 'label': 'vertical muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-ampulla', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0012648', 'children': ['https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-ampulla', 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-ampulla'], 'synonymLabels': [], 'label': 'wall of fallopian tube ampulla'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-infundibulum', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0003984', 'children': ['https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-infundibulum', 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-infundibulum'], 'synonymLabels': [], 'label': 'wall of fallopian tube infundibulum'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-intramural-segment', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_intramural-segment-of-fallopian-tube', 'children': ['https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-intramural-segment', 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-intramural-segment'], 'synonymLabels': [], 'label': 'wall of fallopian tube intramural segment'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_wall-of-fallopian-tube-isthmus', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0016632', 'children': ['https://purl.org/ccf/ASCTB-TEMP_basement-membrane-of-fallopian-tube-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_muscle-layer-of-oviduct-isthmus', 'https://purl.org/ccf/ASCTB-TEMP_serosa-of-fallopian-tube-isthmus'], 'synonymLabels': [], 'label': 'wall of fallopian tube isthmus'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_white-pulp-lymphatic-vessels': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_white-pulp-lymphatic-vessels', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_white-pulp-lymphatic-vessels', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001959', 'children': [], 'synonymLabels': [], 'label': 'white pulp lymphatic vessels'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_zygomatic-process-of-squamous-part-of-temporal-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_zygomatic-process-of-squamous-part-of-temporal-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_zygomatic-process-of-squamous-part-of-temporal-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001678', 'children': [], 'synonymLabels': [], 'label': 'zygomatic process of squamous part of temporal bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001622', 'children': [], 'synonymLabels': [], 'label': 'zygomaticofacial artery'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-foramen-of-zygomatic-bone': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-foramen-of-zygomatic-bone', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_zygomaticofacial-foramen-of-zygomatic-bone', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001683', 'children': [], 'synonymLabels': [], 'label': 'zygomaticofacial foramen of zygomatic bone'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_zygomaticotemporal-artery': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_zygomaticotemporal-artery', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_zygomaticotemporal-artery', 'parent': 'http://purl.obolibrary.org/obo/UBERON_0001622', 'children': [], 'synonymLabels': [], 'label': 'zygomaticotemporal artery'})})\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.ontology_tree_model(cache=True)\n",
    "    for item in api_response:\n",
    "        pprint(item)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "7170f6f3",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='cell_nodes'></a>\n",
    "#### Get cell type tree nodes\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional)\n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "e27e8ac1",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "('root', 'http://purl.obolibrary.org/obo/CL_0000000')\n",
      "('nodes',\n",
      " {'http://purl.obolibrary.org/obo/CL_0000000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000000', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/CL_0000212', 'http://purl.obolibrary.org/obo/CL_0002071', 'http://purl.obolibrary.org/obo/CL_0000136', 'http://purl.obolibrary.org/obo/CL_0002521', 'http://purl.obolibrary.org/obo/CL_1000309', 'http://purl.obolibrary.org/obo/CL_0002619', 'http://purl.obolibrary.org/obo/CL_4028006', 'https://purl.org/ccf/ASCTB-TEMP_adventitial-stromal-cell', 'http://purl.obolibrary.org/obo/CL_1001096', 'http://purl.obolibrary.org/obo/CL_4033044', 'http://purl.obolibrary.org/obo/CL_4033055', 'http://purl.obolibrary.org/obo/CL_4033023', 'http://purl.obolibrary.org/obo/CL_4033024', 'http://purl.obolibrary.org/obo/CL_0000583', 'http://purl.obolibrary.org/obo/CL_4033041', 'http://purl.obolibrary.org/obo/CL_4033042', 'http://purl.obolibrary.org/obo/CL_4028004', 'http://purl.obolibrary.org/obo/CL_0002062', 'http://purl.obolibrary.org/obo/CL_0002063', 'http://purl.obolibrary.org/obo/CL_0002536', 'http://purl.obolibrary.org/obo/CL_2000061', 'http://purl.obolibrary.org/obo/CL_4023039', 'http://purl.obolibrary.org/obo/CL_0000033', 'http://purl.obolibrary.org/obo/CL_1000412', 'http://purl.obolibrary.org/obo/CL_1001607', 'http://purl.obolibrary.org/obo/CL_1001107', 'http://purl.obolibrary.org/obo/CL_1001131', 'http://purl.obolibrary.org/obo/CL_0000127', 'http://purl.obolibrary.org/obo/CL_0002605', 'http://purl.obolibrary.org/obo/CL_0012000', 'http://purl.obolibrary.org/obo/CL_0000236', 'http://purl.obolibrary.org/obo/CL_0009018', 'https://purl.org/ccf/ASCTB-TEMP_b-cell', 'http://purl.obolibrary.org/obo/CL_0009104', 'http://purl.obolibrary.org/obo/CL_0000945', 'http://purl.obolibrary.org/obo/CL_1000349', 'http://purl.obolibrary.org/obo/CL_1000352', 'http://purl.obolibrary.org/obo/CL_1000351', 'http://purl.obolibrary.org/obo/CL_1000350', 'http://purl.obolibrary.org/obo/CL_1000348', 'http://purl.obolibrary.org/obo/CL_1000486', 'http://purl.obolibrary.org/obo/CL_0002341', 'http://purl.obolibrary.org/obo/CL_0002329', 'http://purl.obolibrary.org/obo/CL_0000767', 'https://purl.org/ccf/ASCTB-TEMP_bche-butyrylcholinesterase-cell', 'http://purl.obolibrary.org/obo/CL_0001070', 'http://purl.obolibrary.org/obo/CL_0000644', 'http://purl.obolibrary.org/obo/CL_0000071', 'http://purl.obolibrary.org/obo/CL_0002543', 'http://purl.obolibrary.org/obo/CL_1000413', 'http://purl.obolibrary.org/obo/CL_0019018', 'http://purl.obolibrary.org/obo/CL_0001035', 'http://purl.obolibrary.org/obo/CL_4023072', 'http://purl.obolibrary.org/obo/CL_0002598', 'http://purl.obolibrary.org/obo/CL_4033017', 'http://purl.obolibrary.org/obo/CL_4028002', 'http://purl.obolibrary.org/obo/CL_4028003', 'http://purl.obolibrary.org/obo/CL_0002144', 'http://purl.obolibrary.org/obo/CL_0010008', 'http://purl.obolibrary.org/obo/CL_0000746', 'https://purl.org/ccf/ASCTB-TEMP_catecholaminergic-neuron', 'http://purl.obolibrary.org/obo/CL_0000624', 'http://purl.obolibrary.org/obo/CL_0000897', 'https://purl.org/ccf/ASCTB-TEMP_cd4-t', 'http://purl.obolibrary.org/obo/CL_0000492', 'http://purl.obolibrary.org/obo/CL_4033038', 'http://purl.obolibrary.org/obo/CL_0002436', 'http://purl.obolibrary.org/obo/CL_0000938', 'http://purl.obolibrary.org/obo/CL_0000900', 'http://purl.obolibrary.org/obo/CL_0000625', 'http://purl.obolibrary.org/obo/CL_0000913', 'http://purl.obolibrary.org/obo/CL_0001050', 'http://purl.obolibrary.org/obo/CL_0000909', 'http://purl.obolibrary.org/obo/CL_0001203', 'https://purl.org/ccf/ASCTB-TEMP_cd8-t', 'http://purl.obolibrary.org/obo/CL_4033039', 'http://purl.obolibrary.org/obo/CL_0002437', 'http://purl.obolibrary.org/obo/CL_0009068', 'http://purl.obolibrary.org/obo/CL_0009069', 'http://purl.obolibrary.org/obo/CL_0002394', 'http://purl.obolibrary.org/obo/CL_0002399', 'http://purl.obolibrary.org/obo/CL_0009112', 'http://purl.obolibrary.org/obo/CL_0009111', 'http://purl.obolibrary.org/obo/CL_4023057', 'http://purl.obolibrary.org/obo/CL_0010012', 'http://purl.obolibrary.org/obo/CL_4023064', 'http://purl.obolibrary.org/obo/CL_0000706', 'http://purl.obolibrary.org/obo/LMHA_00142', 'http://purl.obolibrary.org/obo/CL_0002332', 'http://purl.obolibrary.org/obo/CL_0002145', 'https://purl.org/ccf/ASCTB-TEMP_ciliated-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_0000860', 'http://purl.obolibrary.org/obo/CL_0000158', 'http://purl.obolibrary.org/obo/CL_4032000', 'http://purl.obolibrary.org/obo/CL_0000402', 'http://purl.obolibrary.org/obo/CL_1000454', 'http://purl.obolibrary.org/obo/CL_1001432', 'http://purl.obolibrary.org/obo/CL_4030015', 'http://purl.obolibrary.org/obo/CL_1001431', 'http://purl.obolibrary.org/obo/CL_0000146', 'http://purl.obolibrary.org/obo/CL_0000075', 'https://purl.org/ccf/ASCTB-TEMP_columnar-ovarian-surface-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_4023059', 'http://purl.obolibrary.org/obo/CL_1000768', 'http://purl.obolibrary.org/obo/CL_4030019', 'http://purl.obolibrary.org/obo/CL_4030020', 'http://purl.obolibrary.org/obo/CL_4030018', 'http://purl.obolibrary.org/obo/CL_0000484', 'http://purl.obolibrary.org/obo/CL_0000990', 'http://purl.obolibrary.org/obo/CL_0002059', 'http://purl.obolibrary.org/obo/CL_0002460', 'http://purl.obolibrary.org/obo/CL_0000132', 'http://purl.obolibrary.org/obo/CL_0000575', 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-endothelial-cell', 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-macrophage', 'http://purl.obolibrary.org/obo/CL_1000715', 'http://purl.obolibrary.org/obo/CL_1000714', 'http://purl.obolibrary.org/obo/CL_1001109', 'http://purl.obolibrary.org/obo/CL_0002364', 'http://purl.obolibrary.org/obo/CL_0009070', 'http://purl.obolibrary.org/obo/CL_4023013', 'http://purl.obolibrary.org/obo/CL_0000241', 'http://purl.obolibrary.org/obo/CL_0000711', 'http://purl.obolibrary.org/obo/CL_0000934', 'https://purl.org/ccf/ASCTB-TEMP_cytotoxic-memory-t-cell', 'http://purl.obolibrary.org/obo/CL_0000910', 'http://purl.obolibrary.org/obo/CL_0000794', 'http://purl.obolibrary.org/obo/CL_0000523', 'https://purl.org/ccf/ASCTB-TEMP_dec205-dc', 'http://purl.obolibrary.org/obo/CL_0000451', 'http://purl.obolibrary.org/obo/CL_0001006', 'http://purl.obolibrary.org/obo/CL_0001058', 'http://purl.obolibrary.org/obo/CL_1001111', 'http://purl.obolibrary.org/obo/CL_4030012', 'http://purl.obolibrary.org/obo/CL_4030013', 'http://purl.obolibrary.org/obo/CL_4030014', 'http://purl.obolibrary.org/obo/CL_1001285', 'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-ureter', 'http://purl.obolibrary.org/obo/CL_1000849', 'http://purl.obolibrary.org/obo/CL_4030016', 'http://purl.obolibrary.org/obo/CL_4030017', 'http://purl.obolibrary.org/obo/CL_0000540', 'http://purl.obolibrary.org/obo/CL_0009081', 'http://purl.obolibrary.org/obo/CL_0009082', 'http://purl.obolibrary.org/obo/CL_0009083', 'http://purl.obolibrary.org/obo/CL_0000809', 'http://purl.obolibrary.org/obo/CL_0002079', 'http://purl.obolibrary.org/obo/CL_0002425', 'http://purl.obolibrary.org/obo/CL_0000434', 'http://purl.obolibrary.org/obo/CL_0000905', 'http://purl.obolibrary.org/obo/CL_1001099', 'http://purl.obolibrary.org/obo/CL_0002350', 'https://purl.org/ccf/ASCTB-TEMP_endocervical-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_0008024', 'http://purl.obolibrary.org/obo/CL_0000163', 'http://purl.obolibrary.org/obo/CL_0009084', 'http://purl.obolibrary.org/obo/CL_2000091', 'http://purl.obolibrary.org/obo/CL_0002255', 'http://purl.obolibrary.org/obo/CL_0000115', 'http://purl.obolibrary.org/obo/CL_0002585', 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell', 'http://purl.obolibrary.org/obo/CL_0002138', 'http://purl.obolibrary.org/obo/CL_0009086', 'http://purl.obolibrary.org/obo/CL_0002262', 'http://purl.obolibrary.org/obo/CL_1000414', 'http://purl.obolibrary.org/obo/CL_2000040', 'http://purl.obolibrary.org/obo/CL_4033063', 'http://purl.obolibrary.org/obo/CL_0000584', 'http://purl.obolibrary.org/obo/CL_0000041', 'http://purl.obolibrary.org/obo/CL_0000771', 'http://purl.obolibrary.org/obo/CL_0000065', 'http://purl.obolibrary.org/obo/CL_0000066', 'http://purl.obolibrary.org/obo/CL_0009016', 'http://purl.obolibrary.org/obo/CL_0000036', 'https://purl.org/ccf/ASCTB-TEMP_epithelial-stem-cells', 'http://purl.obolibrary.org/obo/CL_0000232', 'http://purl.obolibrary.org/obo/CL_4023009', 'http://purl.obolibrary.org/obo/CL_0008036', 'http://purl.obolibrary.org/obo/CL_4030007', 'http://purl.obolibrary.org/obo/CL_4030006', 'http://purl.obolibrary.org/obo/CL_0000057', 'http://purl.obolibrary.org/obo/CL_0002620', 'http://purl.obolibrary.org/obo/CL_1000308', 'http://purl.obolibrary.org/obo/CL_1000692', 'http://purl.obolibrary.org/obo/CL_2000066', 'http://purl.obolibrary.org/obo/CL_2000067', 'http://purl.obolibrary.org/obo/CL_0002557', 'https://purl.org/ccf/ASCTB-TEMP_fibroblast-mesenchymal-cell', 'https://purl.org/ccf/ASCTB-TEMP_flattened-cuboidal-ovarian-surface-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_0000442', 'http://purl.obolibrary.org/obo/CL_0000798', 'https://purl.org/ccf/ASCTB-TEMP_ganglion', 'http://purl.obolibrary.org/obo/CL_0000844', 'http://purl.obolibrary.org/obo/CL_0000317', 'https://purl.org/ccf/ASCTB-TEMP_glandular-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_0000125', 'https://purl.org/ccf/ASCTB-TEMP_glial-cell', 'http://purl.obolibrary.org/obo/CL_1001005', 'http://purl.obolibrary.org/obo/CL_0002292', 'http://purl.obolibrary.org/obo/CL_0000679', 'http://purl.obolibrary.org/obo/CL_1000321', 'http://purl.obolibrary.org/obo/CL_1000325', 'http://purl.obolibrary.org/obo/CL_1000326', 'http://purl.obolibrary.org/obo/CL_1000324', 'http://purl.obolibrary.org/obo/CL_4033009', 'http://purl.obolibrary.org/obo/CL_0000094', 'http://purl.obolibrary.org/obo/CL_0001078', 'http://purl.obolibrary.org/obo/CL_0000037', 'http://purl.obolibrary.org/obo/CL_0002196', 'http://purl.obolibrary.org/obo/CL_0000182', 'http://purl.obolibrary.org/obo/CL_0002095', 'http://purl.obolibrary.org/obo/CL_0017011', 'http://purl.obolibrary.org/obo/CL_0002604', 'http://purl.obolibrary.org/obo/CL_4023060', 'http://purl.obolibrary.org/obo/CL_4023061', 'http://purl.obolibrary.org/obo/CL_4023062', 'http://purl.obolibrary.org/obo/CL_3000001', 'http://purl.obolibrary.org/obo/CL_0002652', 'http://purl.obolibrary.org/obo/CL_0000914', 'http://purl.obolibrary.org/obo/CL_0000921', 'http://purl.obolibrary.org/obo/CL_0001065', 'https://purl.org/ccf/ASCTB-TEMP_innate-lymphoid-cell', 'http://purl.obolibrary.org/obo/CL_0001069', 'http://purl.obolibrary.org/obo/CL_0001071', 'http://purl.obolibrary.org/obo/CL_1000718', 'http://purl.obolibrary.org/obo/CL_4033014', 'http://purl.obolibrary.org/obo/CL_0002201', 'http://purl.obolibrary.org/obo/CL_4030021', 'https://purl.org/ccf/ASCTB-TEMP_interdigitating-dendritic-cells', 'http://purl.obolibrary.org/obo/CL_0002088', 'http://purl.obolibrary.org/obo/CL_4033062', 'http://purl.obolibrary.org/obo/CL_1000299', 'http://purl.obolibrary.org/obo/CL_4033043', 'http://purl.obolibrary.org/obo/CL_4023008', 'http://purl.obolibrary.org/obo/CL_0005006', 'http://purl.obolibrary.org/obo/CL_0002565', 'http://purl.obolibrary.org/obo/CL_0000648', 'http://purl.obolibrary.org/obo/CL_0000312', 'http://purl.obolibrary.org/obo/CL_0000646', 'http://purl.obolibrary.org/obo/CL_0002153', 'http://purl.obolibrary.org/obo/CL_0002337', 'http://purl.obolibrary.org/obo/CL_0000649', 'http://purl.obolibrary.org/obo/CL_0002363', 'http://purl.obolibrary.org/obo/CL_0000091', 'http://purl.obolibrary.org/obo/CL_0000453', 'http://purl.obolibrary.org/obo/CL_0002457', 'http://purl.obolibrary.org/obo/CL_0002224', 'http://purl.obolibrary.org/obo/CL_0011004', 'http://purl.obolibrary.org/obo/CL_0000738', 'https://purl.org/ccf/ASCTB-TEMP_limbal-stem-cells', 'http://purl.obolibrary.org/obo/CL_1000398', 'http://purl.obolibrary.org/obo/CL_0002340', 'https://purl.org/ccf/ASCTB-TEMP_luminal-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_1000271', 'http://purl.obolibrary.org/obo/CL_4033018', 'http://purl.obolibrary.org/obo/CL_1000223', 'http://purl.obolibrary.org/obo/CL_0019015', 'http://purl.obolibrary.org/obo/CL_4033026', 'http://purl.obolibrary.org/obo/CL_0009089', 'http://purl.obolibrary.org/obo/CL_0000175', 'https://purl.org/ccf/ASCTB-TEMP_lymphatic', 'http://purl.obolibrary.org/obo/CL_0009107', 'http://purl.obolibrary.org/obo/CL_0009110', 'http://purl.obolibrary.org/obo/CL_0009108', 'http://purl.obolibrary.org/obo/CL_0009109', 'http://purl.obolibrary.org/obo/CL_0002042', 'https://purl.org/ccf/ASCTB-TEMP_lymphatics', 'http://purl.obolibrary.org/obo/CL_0000542', 'https://purl.org/ccf/ASCTB-TEMP_lymphocyte', 'http://purl.obolibrary.org/obo/CL_0000682', 'http://purl.obolibrary.org/obo/CL_1000695', 'http://purl.obolibrary.org/obo/CL_0000235', 'http://purl.obolibrary.org/obo/CL_0000866', 'http://purl.obolibrary.org/obo/CL_0000872', 'http://purl.obolibrary.org/obo/CL_0000874', 'http://purl.obolibrary.org/obo/CL_0000876', 'http://purl.obolibrary.org/obo/CL_0000882', 'http://purl.obolibrary.org/obo/CL_0000883', 'http://purl.obolibrary.org/obo/CL_0000887', 'https://purl.org/ccf/ASCTB-TEMP_macrophage', 'http://purl.obolibrary.org/obo/CL_1000850', 'http://purl.obolibrary.org/obo/CL_4023074', 'https://purl.org/ccf/ASCTB-TEMP_mantle-zone-b-cell', 'http://purl.obolibrary.org/obo/CL_0009103', 'http://purl.obolibrary.org/obo/CL_0000097', 'https://purl.org/ccf/ASCTB-TEMP_mast-cell', 'http://purl.obolibrary.org/obo/CL_0000814', 'http://purl.obolibrary.org/obo/CL_1001474', 'http://purl.obolibrary.org/obo/CL_4030022', 'http://purl.obolibrary.org/obo/CL_0009106', 'http://purl.obolibrary.org/obo/CL_1001108', 'http://purl.obolibrary.org/obo/CL_0009071', 'http://purl.obolibrary.org/obo/CL_0009072', 'http://purl.obolibrary.org/obo/CL_0009073', 'http://purl.obolibrary.org/obo/CL_0009074', 'http://purl.obolibrary.org/obo/CL_0000148', 'http://purl.obolibrary.org/obo/CL_1000458', 'http://purl.obolibrary.org/obo/CL_0000787', 'http://purl.obolibrary.org/obo/CL_0000970', 'http://purl.obolibrary.org/obo/CL_0000972', 'http://purl.obolibrary.org/obo/CL_0000242', 'http://purl.obolibrary.org/obo/CL_1000742', 'http://purl.obolibrary.org/obo/CL_0008019', 'http://purl.obolibrary.org/obo/CL_0002568', 'http://purl.obolibrary.org/obo/CL_0000077', 'http://purl.obolibrary.org/obo/CL_1000457', 'http://purl.obolibrary.org/obo/CL_1000493', 'http://purl.obolibrary.org/obo/CL_4023063', 'http://purl.obolibrary.org/obo/CL_0000129', 'http://purl.obolibrary.org/obo/CL_0019028', 'http://purl.obolibrary.org/obo/CL_4023079', 'http://purl.obolibrary.org/obo/CL_4033045', 'http://purl.obolibrary.org/obo/CL_0000576', 'http://purl.obolibrary.org/obo/CL_0011031', 'http://purl.obolibrary.org/obo/CL_0001055', 'http://purl.obolibrary.org/obo/CL_0009114', 'http://purl.obolibrary.org/obo/CL_0000113', 'http://purl.obolibrary.org/obo/CL_0000100', 'http://purl.obolibrary.org/obo/CL_0000940', 'http://purl.obolibrary.org/obo/CL_4033022', 'http://purl.obolibrary.org/obo/CL_4033020', 'http://purl.obolibrary.org/obo/CL_0008034', 'https://purl.org/ccf/ASCTB-TEMP_mural-granulosa-cell', 'http://purl.obolibrary.org/obo/CL_1000279', 'https://purl.org/ccf/ASCTB-TEMP_muscle', 'http://purl.obolibrary.org/obo/CL_0009075', 'http://purl.obolibrary.org/obo/CL_1000417', 'http://purl.obolibrary.org/obo/CL_4033003', 'http://purl.obolibrary.org/obo/CL_4033021', 'http://purl.obolibrary.org/obo/CL_0000186', 'http://purl.obolibrary.org/obo/CL_1000691', 'http://purl.obolibrary.org/obo/CL_1000708', 'http://purl.obolibrary.org/obo/CL_1001319', 'http://purl.obolibrary.org/obo/CL_0000788', 'http://purl.obolibrary.org/obo/CL_0000623', 'http://purl.obolibrary.org/obo/CL_0001067', 'http://purl.obolibrary.org/obo/CL_4023012', 'https://purl.org/ccf/ASCTB-TEMP_nerve', 'http://purl.obolibrary.org/obo/CL_0002573', 'https://purl.org/ccf/ASCTB-TEMP_nerves', 'http://purl.obolibrary.org/obo/CL_0009076', 'http://purl.obolibrary.org/obo/CL_0000165', 'http://purl.obolibrary.org/obo/CL_4033010', 'http://purl.obolibrary.org/obo/CL_0017002', 'http://purl.obolibrary.org/obo/CL_0000526', 'http://purl.obolibrary.org/obo/CL_0012001', 'http://purl.obolibrary.org/obo/CL_0000096', 'http://purl.obolibrary.org/obo/CL_0000875', 'http://purl.obolibrary.org/obo/CL_0002304', 'http://purl.obolibrary.org/obo/CL_0000128', 'http://purl.obolibrary.org/obo/CL_0002453', 'http://purl.obolibrary.org/obo/CL_1000717', 'http://purl.obolibrary.org/obo/CL_1000716', 'http://purl.obolibrary.org/obo/CL_1000477', 'http://purl.obolibrary.org/obo/CL_1001599', 'http://purl.obolibrary.org/obo/CL_0009009', 'http://purl.obolibrary.org/obo/CL_1000344', 'http://purl.obolibrary.org/obo/CL_1000597', 'http://purl.obolibrary.org/obo/CL_1000452', 'http://purl.obolibrary.org/obo/CL_0019029', 'http://purl.obolibrary.org/obo/CL_4033025', 'https://purl.org/ccf/ASCTB-TEMP_pericryptal-fibroblastic-sheath', 'http://purl.obolibrary.org/obo/CL_0002576', 'http://purl.obolibrary.org/obo/CL_0019026', 'http://purl.obolibrary.org/obo/CL_1000301', 'http://purl.obolibrary.org/obo/CL_1001033', 'http://purl.obolibrary.org/obo/CL_0000359', 'https://purl.org/ccf/ASCTB-TEMP_perivascular-support-cell', 'http://purl.obolibrary.org/obo/CL_0002303', 'http://purl.obolibrary.org/obo/CL_2000054', 'http://purl.obolibrary.org/obo/CL_2000062', 'http://purl.obolibrary.org/obo/CL_0002558', 'http://purl.obolibrary.org/obo/CL_0000786', 'http://purl.obolibrary.org/obo/CL_0000980', 'http://purl.obolibrary.org/obo/CL_0000784', 'http://purl.obolibrary.org/obo/CL_0000942', 'http://purl.obolibrary.org/obo/CL_0000233', 'http://purl.obolibrary.org/obo/CL_0000653', 'http://purl.obolibrary.org/obo/CL_0009100', 'https://purl.org/ccf/ASCTB-TEMP_pre-antral-follicle-granulosa-cell', 'http://purl.obolibrary.org/obo/CL_0000654', 'http://purl.obolibrary.org/obo/CL_1000487', 'http://purl.obolibrary.org/obo/CL_4030011', 'http://purl.obolibrary.org/obo/CL_0002306', 'http://purl.obolibrary.org/obo/CL_4030009', 'http://purl.obolibrary.org/obo/CL_4030010', 'http://purl.obolibrary.org/obo/CL_1001568', 'http://purl.obolibrary.org/obo/CL_0017000', 'http://purl.obolibrary.org/obo/CL_0002068', 'http://purl.obolibrary.org/obo/CL_0000632', 'http://purl.obolibrary.org/obo/CL_1000489', 'https://purl.org/ccf/ASCTB-TEMP_regulatory-cd4-t', 'http://purl.obolibrary.org/obo/CL_0000815', 'http://purl.obolibrary.org/obo/CL_0002677', 'http://purl.obolibrary.org/obo/CL_4033048', 'https://purl.org/ccf/ASCTB-TEMP_reticular-cell-of-splenic-sinusoid', 'http://purl.obolibrary.org/obo/CL_0000432', 'http://purl.obolibrary.org/obo/CL_0002586', 'http://purl.obolibrary.org/obo/CL_4033016', 'http://purl.obolibrary.org/obo/CL_1000331', 'http://purl.obolibrary.org/obo/CL_1000330', 'http://purl.obolibrary.org/obo/CL_4033005', 'http://purl.obolibrary.org/obo/CL_0000188', 'http://purl.obolibrary.org/obo/CL_0000192', 'http://purl.obolibrary.org/obo/CL_0002597', 'http://purl.obolibrary.org/obo/CL_0002592', 'http://purl.obolibrary.org/obo/CL_0019017', 'http://purl.obolibrary.org/obo/CL_0002591', 'https://purl.org/ccf/ASCTB-TEMP_sox9-epithelial-cell', 'http://purl.obolibrary.org/obo/CL_2000053', 'https://purl.org/ccf/ASCTB-TEMP_splenic-littoral-cell', 'https://purl.org/ccf/ASCTB-TEMP_splenic-pericyte', 'https://purl.org/ccf/ASCTB-TEMP_splenic-perifollicular-zone-macrophage', 'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stromal-cell', 'https://purl.org/ccf/ASCTB-TEMP_splenic-smooth-muscle-cell', 'http://purl.obolibrary.org/obo/CL_0000499', 'https://purl.org/ccf/ASCTB-TEMP_splenic-stromal-sheath-cell', 'http://purl.obolibrary.org/obo/CL_0000240', 'http://purl.obolibrary.org/obo/CL_0000034', 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-i-cell', 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-ii-cell', 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iii-cell', 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iv-cell', 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-v-cell', 'http://purl.obolibrary.org/obo/CL_0002574', 'https://purl.org/ccf/ASCTB-TEMP_stromal-cell', 'http://purl.obolibrary.org/obo/CL_0009077', 'https://purl.org/ccf/ASCTB-TEMP_subcapsular-dendritic-cell', 'https://purl.org/ccf/ASCTB-TEMP_subepithelial-membrane', 'http://purl.obolibrary.org/obo/CL_0000845', 'http://purl.obolibrary.org/obo/CL_0000793', 'http://purl.obolibrary.org/obo/CL_0000935', 'http://purl.obolibrary.org/obo/CL_0000915', 'http://purl.obolibrary.org/obo/CL_0000796', 'http://purl.obolibrary.org/obo/CL_0000802', 'http://purl.obolibrary.org/obo/CL_0011103', 'http://purl.obolibrary.org/obo/CL_3000002', 'http://purl.obolibrary.org/obo/CL_0000525', 'http://purl.obolibrary.org/obo/CL_0000084', 'https://purl.org/ccf/ASCTB-TEMP_t-cell', 'http://purl.obolibrary.org/obo/CL_0009105', 'http://purl.obolibrary.org/obo/CL_0002038', 'http://purl.obolibrary.org/obo/CL_0009113', 'http://purl.obolibrary.org/obo/CL_0000545', 'http://purl.obolibrary.org/obo/CL_0017004', 'http://purl.obolibrary.org/obo/CL_0000899', 'http://purl.obolibrary.org/obo/CL_0000546', 'http://purl.obolibrary.org/obo/CL_4023068', 'http://purl.obolibrary.org/obo/CL_0000503', 'http://purl.obolibrary.org/obo/CL_1001106', 'http://purl.obolibrary.org/obo/CL_0009078', 'http://purl.obolibrary.org/obo/CL_0009079', 'http://purl.obolibrary.org/obo/CL_0000877', 'http://purl.obolibrary.org/obo/CL_0000888', 'http://purl.obolibrary.org/obo/CL_0000485', 'http://purl.obolibrary.org/obo/CL_1001577', 'http://purl.obolibrary.org/obo/CL_1000329', 'http://purl.obolibrary.org/obo/CL_0019002', 'http://purl.obolibrary.org/obo/CL_0019003', 'http://purl.obolibrary.org/obo/CL_0019019', 'http://purl.obolibrary.org/obo/CL_0009011', 'http://purl.obolibrary.org/obo/CL_0000244', 'http://purl.obolibrary.org/obo/CL_0000818', 'http://purl.obolibrary.org/obo/CL_0002207', 'http://purl.obolibrary.org/obo/CL_0002208', 'http://purl.obolibrary.org/obo/CL_0009080', 'http://purl.obolibrary.org/obo/CL_0019032', 'http://purl.obolibrary.org/obo/CL_4033007', 'http://purl.obolibrary.org/obo/CL_1001428', 'https://purl.org/ccf/ASCTB-TEMP_uterine-dendritic-cells', 'http://purl.obolibrary.org/obo/CL_4033064', 'https://purl.org/ccf/ASCTB-TEMP_uterine-natural-killer-cell', 'http://purl.obolibrary.org/obo/CL_0002343', 'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-i-cell', 'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-ii-cell', 'http://purl.obolibrary.org/obo/CL_4030032', 'http://purl.obolibrary.org/obo/CL_1001318', 'http://purl.obolibrary.org/obo/CL_4033008'], 'synonymLabels': [], 'label': 'cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000033', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000033', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['apocrine cell'], 'label': 'apocrine'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000034', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000034', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['animal stem cell'], 'label': 'stem cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000036', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial stem cell', 'epithelial fate stem cell'], 'label': 'epithelial stem cells'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000037': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000037', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000037', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['blood forming stem cell', 'hemopoietic stem cell', 'hematopoietic stem cell'], 'label': 'hematopoetic stem cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000041', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mature eosinophil', 'mature eosinocyte', 'mature eosinophil leucocyte', 'mature eosinophil leukocyte'], 'label': 'eosinophil'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000049', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000049', 'parent': 'http://purl.obolibrary.org/obo/CL_0000837', 'children': [], 'synonymLabels': ['common myeloid precursor'], 'label': 'common myeloid progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000050', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000050', 'parent': 'http://purl.obolibrary.org/obo/CL_0000837', 'children': [], 'synonymLabels': ['megakaryocyte-erythroid progenitor cell', 'CFU-EM', 'CFU-MegE', 'colony forming unit erythroid megakaryocyte', 'Meg/E progenitor', 'megakaryocyte/erythrocyte progenitor', 'megakaryocyte/erythroid progenitor cell', 'MEP'], 'label': 'megakaryocyte-erythroid-mast cell progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000051', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000051', 'parent': 'http://purl.obolibrary.org/obo/CL_0000837', 'children': [], 'synonymLabels': ['common lymphocyte precursor', 'common lymphocyte progenitor', 'common lymphoid precursor'], 'label': 'common lymphoid progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000057': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000057', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000057', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051025', 'http://purl.obolibrary.org/obo/PCL_0051026', 'http://purl.obolibrary.org/obo/PCL_0051027', 'http://purl.obolibrary.org/obo/PCL_0051028', 'http://purl.obolibrary.org/obo/PCL_0051029', 'http://purl.obolibrary.org/obo/PCL_0051030', 'http://purl.obolibrary.org/obo/PCL_0051031', 'http://purl.obolibrary.org/obo/PCL_0051032', 'http://purl.obolibrary.org/obo/CL_0002410'], 'synonymLabels': [], 'label': 'fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000065', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000065', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051066', 'http://purl.obolibrary.org/obo/PCL_0051067', 'http://purl.obolibrary.org/obo/PCL_0051068', 'http://purl.obolibrary.org/obo/PCL_0051069', 'http://purl.obolibrary.org/obo/PCL_0051070', 'http://purl.obolibrary.org/obo/PCL_0051071', 'http://purl.obolibrary.org/obo/PCL_0051072', 'http://purl.obolibrary.org/obo/PCL_0051073', 'http://purl.obolibrary.org/obo/PCL_0051074', 'http://purl.obolibrary.org/obo/PCL_0051075'], 'synonymLabels': ['ependymocyte'], 'label': 'ependymal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000066', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000066', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epitheliocyte'], 'label': 'epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000071', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cuboidal endothelial cell of vascular tree', 'blood vessel endothelial cell', 'endothelial cell', 'vascular endothelial cell'], 'label': 'blood endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000075', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000075', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['columnar/cuboidal epithelial cell'], 'label': 'columnar cell (larger cholangiocytes are more columnar) has ciliae'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000077': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000077', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000077', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mesotheliocyte', 'mesothelial cell'], 'label': 'mesothelial'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000084': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000084', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000084', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000895', 'http://purl.obolibrary.org/obo/CL_0001087', 'http://purl.obolibrary.org/obo/CL_0001062'], 'synonymLabels': ['T lymphocyte', 'T-cell', 'T-lymphocyte', 'T cell', 't lymphocyte', 't lymphocytes'], 'label': 't cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000091', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['Kupffer cell', 'hepatic macrophage', 'littoral cell of hepatic sinusoid', 'liver macrophage', 'macrophagocytus stellatus', 'stellate cell of von Kupffer', 'von Kupffer cell'], 'label': 'kupffer cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000094', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000094', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['granular leucocyte', 'granular leukocyte', 'polymorphonuclear leukocyte'], 'label': 'granulocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000096', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['PMN', 'polymorphonuclear neutrophil', 'polynuclear neutrophilic leucocyte', 'polynuclear neutrophilic leukocyte', 'mature neutrocyte', 'mature neutrophil leucocyte', 'mature neutrophil leukocyte', 'mature neutrophilic leucocyte', 'mature neutrophilic leukocyte', 'mature neutrophil'], 'label': 'neutrophil (normally intravascular only)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000097', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000097', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['histaminocyte', 'labrocyte', 'mastocyte'], 'label': 'mast cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000099': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000099', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000099', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': ['http://purl.obolibrary.org/obo/CL_0000561'], 'synonymLabels': [], 'label': 'interneuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000100', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000100', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['motoneuron'], 'label': 'motor neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000113': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000113', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000113', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_monocyte-derived-cell'], 'synonymLabels': [], 'label': 'mononuclear phagocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000115': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000115', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000115', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endotheliocyte', 'endothelial cell'], 'label': 'endothelial'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000125', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000125', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000516'], 'synonymLabels': ['neuroglial cell'], 'label': 'glial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000127': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000127', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000127', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051057', 'http://purl.obolibrary.org/obo/PCL_0051060', 'http://purl.obolibrary.org/obo/PCL_0051061', 'http://purl.obolibrary.org/obo/PCL_0051062', 'http://purl.obolibrary.org/obo/PCL_0051063', 'http://purl.obolibrary.org/obo/PCL_0051064', 'http://purl.obolibrary.org/obo/PCL_0051065'], 'synonymLabels': ['astrocytic glia'], 'label': 'astrocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000128': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000128', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000128', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015120', 'http://purl.obolibrary.org/obo/PCL_0015079', 'http://purl.obolibrary.org/obo/PCL_0015119', 'http://purl.obolibrary.org/obo/PCL_0015121', 'http://purl.obolibrary.org/obo/PCL_0051041', 'http://purl.obolibrary.org/obo/PCL_0051045', 'http://purl.obolibrary.org/obo/PCL_0051046', 'http://purl.obolibrary.org/obo/PCL_0051047', 'http://purl.obolibrary.org/obo/PCL_0051048', 'http://purl.obolibrary.org/obo/PCL_0051049', 'http://purl.obolibrary.org/obo/PCL_0051050', 'http://purl.obolibrary.org/obo/PCL_0051051'], 'synonymLabels': ['OLs'], 'label': 'oligodendrocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000129': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000129', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000129', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051011', 'http://purl.obolibrary.org/obo/PCL_0051012', 'http://purl.obolibrary.org/obo/PCL_0051013', 'http://purl.obolibrary.org/obo/PCL_0051005', 'http://purl.obolibrary.org/obo/PCL_0051006', 'http://purl.obolibrary.org/obo/PCL_0051007', 'http://purl.obolibrary.org/obo/PCL_0051008', 'http://purl.obolibrary.org/obo/PCL_0051009', 'http://purl.obolibrary.org/obo/PCL_0051010', 'http://purl.obolibrary.org/obo/PCL_0015127'], 'synonymLabels': ['brain-resident macrophage', 'hortega cells', 'microgliocyte', 'microglial cell'], 'label': 'microglia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000132', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000132', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'corneal endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000136': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000136', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000136', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['adipose cell', 'fat cell'], 'label': 'adipocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000146': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000146', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000146', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['simple columnar epithelial cell'], 'label': 'columnar'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000148': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000148', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000148', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'melanocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000158': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000158', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000158', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['Clara cell'], 'label': 'club cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000163': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000163', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000163', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endocrinocyte', 'endocrine cell'], 'label': 'endocrine lineage cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000165': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000165', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000165', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['neuroendocrine cell'], 'label': 'neuroendocrine'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000169': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000169', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000169', 'parent': 'http://purl.obolibrary.org/obo/CL_0008024', 'children': [], 'synonymLabels': ['type B pancreatic cell', 'B-cell of pancreatic islet', 'beta cell of pancreatic islet', 'insulin-secreting cell', 'pancreatic B cell', 'pancreatic B-cell', 'pancreatic beta cell', 'pancreatic islet core', 'type B enteroendocrine cell'], 'label': 'beta cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000171', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000171', 'parent': 'http://purl.obolibrary.org/obo/CL_0008024', 'children': [], 'synonymLabels': ['alpha cell of islet of Langerhans', 'pancreatic alpha cell', 'pancreatic A cell'], 'label': 'alpha cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000173', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000173', 'parent': 'http://purl.obolibrary.org/obo/CL_0008024', 'children': [], 'synonymLabels': ['D-cell of pancreatic islet', 'delta cell of islet', 'delta cell of pancreatic islet', 'pancreatic D-cell', 'pancreatic delta cell', 'somatostatin-secreting pancreatic cell', 'pancreatic D cell'], 'label': 'delta cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000175', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000175', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['corpus luteum cell', 'lutein cell'], 'label': 'luteal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000182', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000182', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'hepatocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000186': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000186', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000186', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['MFB', 'myofibroblast cell', 'myofibroblasts'], 'label': 'myofibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000188', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['skeletal muscle cell', 'cell of skeletal muscle'], 'label': 'skeletal muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000192', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000192', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['myocytes, smooth muscle', 'SMCs', 'smooth muscle fiber', 'smooth muscle cell', 'splenic smooth muscle cell'], 'label': 'smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000212': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000212', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000212', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['absorptive cell'], 'label': 'absorptive'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000232', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000232', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['erythrocyte', 'RBC', 'red blood cell'], 'label': 'erythrocytes'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000233': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000233', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000233', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['anucleate thrombocyte', 'blood platelet', 'enucleate thrombocyte'], 'label': 'platelet'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000235': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000235', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000235', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['histiocyte'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000236': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000236', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000236', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_centroblast', 'https://purl.org/ccf/ASCTB-TEMP_cycling-b'], 'synonymLabels': ['B lymphocyte', 'B-cell', 'B-lymphocyte', 'B cell', 'b lymphocyte'], 'label': 'b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000240', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000240', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['stratified squamous epithelial cell'], 'label': 'squamous'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000241': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000241', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000241', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['stratified cuboidal epithelial cell'], 'label': 'cuboidal cell (small cholangiocytes are cuboidal)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000242', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000242', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['Merkel cell', \"Merkel's cell\", 'merkel cell'], 'label': 'merkel'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000244': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000244', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000244', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['transitional epithelial cell'], 'label': 'transitional'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000287': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000287', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000287', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': ['http://purl.obolibrary.org/obo/CL_0000573', 'http://purl.obolibrary.org/obo/CL_0000604'], 'synonymLabels': ['eye photoreceptor cell'], 'label': 'photoreceptor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000312', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000312', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_4033056'], 'synonymLabels': ['keratinized cell of epidermis', 'malpighian cell', 'keratinocyte (granular)'], 'label': 'keratinocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000317', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000317', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['sebum secreting cell', 'sebocyte'], 'label': 'germinative (epithelial) cell, sebocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000359': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000359', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000359', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['vascular smooth muscle cell', 'VSMC', 'vascular associated smooth muscle cell', 'smooth muscle cell'], 'label': 'perivascular smooth muscle cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000402': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000402', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000402', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051265', 'http://purl.obolibrary.org/obo/PCL_0051266', 'http://purl.obolibrary.org/obo/PCL_0051267', 'http://purl.obolibrary.org/obo/PCL_0051268', 'http://purl.obolibrary.org/obo/PCL_0051269', 'http://purl.obolibrary.org/obo/PCL_0051270', 'http://purl.obolibrary.org/obo/PCL_0051271', 'http://purl.obolibrary.org/obo/PCL_0051272', 'http://purl.obolibrary.org/obo/PCL_0051273', 'http://purl.obolibrary.org/obo/PCL_0051274', 'http://purl.obolibrary.org/obo/PCL_0051275', 'http://purl.obolibrary.org/obo/PCL_0051276'], 'synonymLabels': ['CNS interneuron'], 'label': 'cns interneuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000432': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000432', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000432', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['reticulum cell', 'reticular cell'], 'label': 'reticular cells'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000434': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000434', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000434', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['eccrine cell'], 'label': 'eccrine'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000442', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000442', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['follicular dendritic cell (fdc)'], 'label': 'follicular dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000451', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000451', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['dendritic cell (dc)'], 'label': 'dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000453', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000453', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['LC', 'Langerhans cell', 'langerhans cells'], 'label': 'langerhans cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000484': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000484', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000484', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['MC(TC)', 'MCTC', 'TC mast cells'], 'label': 'connective tissue type mast cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000485': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000485', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000485', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mucosal type mast cell', 'MCT', 'MC(T)', 'T mast cells'], 'label': 'tissue resident mucosal type mast cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000492': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000492', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000492', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD4-positive helper T lymphocyte', 'CD4-positive helper T-cell', 'CD4-positive helper T-lymphocyte', 'CD4-positive T-helper cell', 'CD4-positive helper T cell'], 'label': 'cd4+ t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000499': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000499', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000499', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell'], 'synonymLabels': ['stromal cell'], 'label': 'splenic stromal cell (non-frc/non-fdc)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000503': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000503', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000503', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'theca cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000509': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000509', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000509', 'parent': 'http://purl.obolibrary.org/obo/CL_0008024', 'children': [], 'synonymLabels': ['gastrin secreting cell'], 'label': 'gastrin cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000516': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000516', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000516', 'parent': 'http://purl.obolibrary.org/obo/CL_0000125', 'children': [], 'synonymLabels': ['perineuronal satellite cell', 'perineural satellite cell', 'perineuronal satellite oligodendroglial cell', 'satellite oligodendrocyte'], 'label': 'satellite glial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000523': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000523', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000523', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mononuclear cytotrophoblast cell'], 'label': 'cytotrophoblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000525': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000525', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000525', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['syncytiotrophoblast cell', 'syncytial trophoblast cell', 'syncytiotrophoblastic cell'], 'label': 'syncytiotrophoblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000526': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000526', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000526', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['afferent neuron', 'input neuron'], 'label': 'neuron cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000540': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000540', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000540', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000748', 'http://purl.obolibrary.org/obo/CL_0000740', 'http://purl.obolibrary.org/obo/CL_0000745', 'http://purl.obolibrary.org/obo/CL_0000099', 'http://purl.obolibrary.org/obo/PCL_0051316', 'http://purl.obolibrary.org/obo/PCL_0051317', 'http://purl.obolibrary.org/obo/PCL_0051318', 'http://purl.obolibrary.org/obo/PCL_0051319', 'http://purl.obolibrary.org/obo/PCL_0051320', 'http://purl.obolibrary.org/obo/PCL_0051321', 'http://purl.obolibrary.org/obo/PCL_0051322', 'http://purl.obolibrary.org/obo/PCL_0051323', 'http://purl.obolibrary.org/obo/PCL_0051177', 'http://purl.obolibrary.org/obo/PCL_0051178', 'http://purl.obolibrary.org/obo/PCL_0051179', 'http://purl.obolibrary.org/obo/PCL_0051315', 'http://purl.obolibrary.org/obo/CL_0000636', 'http://purl.obolibrary.org/obo/CL_2000032', 'http://purl.obolibrary.org/obo/CL_0000287', 'http://purl.obolibrary.org/obo/PCL_0051236', 'http://purl.obolibrary.org/obo/PCL_0051238', 'http://purl.obolibrary.org/obo/PCL_0051239', 'http://purl.obolibrary.org/obo/PCL_0051314', 'http://purl.obolibrary.org/obo/PCL_0051335', 'http://purl.obolibrary.org/obo/PCL_0051336', 'http://purl.obolibrary.org/obo/PCL_0051337', 'http://purl.obolibrary.org/obo/PCL_0051338', 'http://purl.obolibrary.org/obo/PCL_0051339', 'http://purl.obolibrary.org/obo/PCL_0051340', 'http://purl.obolibrary.org/obo/PCL_0051341', 'http://purl.obolibrary.org/obo/PCL_0051342', 'http://purl.obolibrary.org/obo/PCL_0051343', 'http://purl.obolibrary.org/obo/PCL_0051344', 'http://purl.obolibrary.org/obo/PCL_0051345', 'http://purl.obolibrary.org/obo/PCL_0051346', 'http://purl.obolibrary.org/obo/PCL_0051347', 'http://purl.obolibrary.org/obo/PCL_0051348', 'http://purl.obolibrary.org/obo/PCL_0051349', 'http://purl.obolibrary.org/obo/PCL_0051350', 'http://purl.obolibrary.org/obo/PCL_0051351', 'http://purl.obolibrary.org/obo/PCL_0051352', 'http://purl.obolibrary.org/obo/PCL_0051353', 'http://purl.obolibrary.org/obo/PCL_0051354', 'http://purl.obolibrary.org/obo/PCL_0051355', 'http://purl.obolibrary.org/obo/PCL_0051356', 'http://purl.obolibrary.org/obo/PCL_0051357', 'http://purl.obolibrary.org/obo/PCL_0051358', 'http://purl.obolibrary.org/obo/PCL_0051359', 'http://purl.obolibrary.org/obo/PCL_0051360', 'http://purl.obolibrary.org/obo/PCL_0051361', 'http://purl.obolibrary.org/obo/PCL_0051362', 'http://purl.obolibrary.org/obo/PCL_0051363', 'http://purl.obolibrary.org/obo/PCL_0051364', 'http://purl.obolibrary.org/obo/PCL_0051365', 'http://purl.obolibrary.org/obo/PCL_0051366', 'http://purl.obolibrary.org/obo/PCL_0051367', 'http://purl.obolibrary.org/obo/PCL_0051368', 'http://purl.obolibrary.org/obo/PCL_0051369', 'http://purl.obolibrary.org/obo/PCL_0051370', 'http://purl.obolibrary.org/obo/PCL_0051371', 'http://purl.obolibrary.org/obo/PCL_0051372', 'http://purl.obolibrary.org/obo/PCL_0051374', 'http://purl.obolibrary.org/obo/PCL_0051375', 'http://purl.obolibrary.org/obo/PCL_0051376', 'http://purl.obolibrary.org/obo/PCL_0051377', 'http://purl.obolibrary.org/obo/PCL_0051378', 'http://purl.obolibrary.org/obo/PCL_0051379', 'http://purl.obolibrary.org/obo/PCL_0051380', 'http://purl.obolibrary.org/obo/PCL_0051381', 'http://purl.obolibrary.org/obo/PCL_0051382', 'http://purl.obolibrary.org/obo/PCL_0051383', 'http://purl.obolibrary.org/obo/PCL_0051384', 'http://purl.obolibrary.org/obo/PCL_0051385', 'http://purl.obolibrary.org/obo/PCL_0051386', 'http://purl.obolibrary.org/obo/PCL_0051387', 'http://purl.obolibrary.org/obo/PCL_0051388', 'http://purl.obolibrary.org/obo/PCL_0051389', 'http://purl.obolibrary.org/obo/PCL_0051390', 'http://purl.obolibrary.org/obo/PCL_0051391', 'http://purl.obolibrary.org/obo/PCL_0051392', 'http://purl.obolibrary.org/obo/PCL_0051393', 'http://purl.obolibrary.org/obo/PCL_0051394', 'http://purl.obolibrary.org/obo/PCL_0051395', 'http://purl.obolibrary.org/obo/PCL_0051396', 'http://purl.obolibrary.org/obo/PCL_0051397', 'http://purl.obolibrary.org/obo/PCL_0051398', 'http://purl.obolibrary.org/obo/PCL_0051399', 'http://purl.obolibrary.org/obo/PCL_0051400', 'http://purl.obolibrary.org/obo/PCL_0051401', 'http://purl.obolibrary.org/obo/PCL_0051403', 'http://purl.obolibrary.org/obo/PCL_0051404', 'http://purl.obolibrary.org/obo/PCL_0051410', 'http://purl.obolibrary.org/obo/PCL_0051411', 'http://purl.obolibrary.org/obo/PCL_0051412', 'http://purl.obolibrary.org/obo/PCL_0051413', 'http://purl.obolibrary.org/obo/PCL_0051414', 'http://purl.obolibrary.org/obo/PCL_0051415', 'http://purl.obolibrary.org/obo/PCL_0051416', 'http://purl.obolibrary.org/obo/PCL_0051417', 'http://purl.obolibrary.org/obo/PCL_0051418', 'http://purl.obolibrary.org/obo/PCL_0051419', 'http://purl.obolibrary.org/obo/PCL_0051421', 'http://purl.obolibrary.org/obo/PCL_0051422', 'http://purl.obolibrary.org/obo/PCL_0051423', 'http://purl.obolibrary.org/obo/PCL_0051424', 'http://purl.obolibrary.org/obo/PCL_0051425', 'http://purl.obolibrary.org/obo/PCL_0051426', 'http://purl.obolibrary.org/obo/PCL_0051429', 'http://purl.obolibrary.org/obo/PCL_0051430', 'http://purl.obolibrary.org/obo/PCL_0051432', 'http://purl.obolibrary.org/obo/PCL_0051433', 'http://purl.obolibrary.org/obo/PCL_0051298', 'http://purl.obolibrary.org/obo/PCL_0051309', 'http://purl.obolibrary.org/obo/PCL_0051310', 'http://purl.obolibrary.org/obo/PCL_0051311', 'http://purl.obolibrary.org/obo/PCL_0051312', 'http://purl.obolibrary.org/obo/PCL_0051313'], 'synonymLabels': ['nerve cell', 'neuron'], 'label': 'dorsal excitatory neuron 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000542': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000542', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000542', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lymphocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000545': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000545', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000545', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['T-helper 1 cell', 'Th1 cell', 'helper T cell type 1', 'T helper cells type 1', 'T(H)-1 cell', 'Th1 CD4+ T cell', 'Th1 T cell', 'Th1 T lymphocyte', 'Th1 T-cell', 'Th1 T-lymphocyte', 'th1 cell'], 'label': 't helper'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000546': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000546', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000546', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['T-helper 2 cell', 'Th2 cell', 'helper T cell type 2', 'T helper cells type 2', 'T(H)-2 cell', 'Th2 T cell', 'Th2 T lymphocyte', 'Th2 T-cell', 'Th2 T-lymphocyte'], 'label': 'th2 cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000553': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000553', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000553', 'parent': 'http://purl.obolibrary.org/obo/CL_0000556', 'children': [], 'synonymLabels': ['CFU-Meg', 'colony-forming unit-megakaryocyte', 'Meg-CFC', 'megacaryoblast', 'megacaryocyte progenitor cell', 'megakaryoblast', 'megakaryocytic progenitor cell', 'MkP', 'megakaryocyte progenitor cell'], 'label': 'early megakaryocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000556': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000556', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000556', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/CL_0000553'], 'synonymLabels': ['megacaryocyte', 'megalocaryocyte', 'megalokaryocyte'], 'label': 'megakaryocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000557': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000557', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000557', 'parent': 'http://purl.obolibrary.org/obo/CL_0000837', 'children': [], 'synonymLabels': ['colony forming unit granulocyte macrophage', 'granulocyte-macrophage progenitor', 'granulocyte/monocyte precursor', 'granulocyte/monocyte progenitor', 'granulocyte monocyte progenitor cell'], 'label': 'granulocyte-macrophage progenitor cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000559': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000559', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000559', 'parent': 'http://purl.obolibrary.org/obo/CL_0000576', 'children': [], 'synonymLabels': [], 'label': 'promonocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000561': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000561', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000561', 'parent': 'http://purl.obolibrary.org/obo/CL_0000099', 'children': ['http://purl.obolibrary.org/obo/CL_0011005', 'http://purl.obolibrary.org/obo/CL_4030028', 'http://purl.obolibrary.org/obo/CL_0004252', 'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell', 'http://purl.obolibrary.org/obo/CL_0004232'], 'synonymLabels': ['amacrine neuron'], 'label': 'amacrine cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000573': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000573', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000573', 'parent': 'http://purl.obolibrary.org/obo/CL_0000287', 'children': [], 'synonymLabels': [], 'label': 'retinal cone cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000575': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000575', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000575', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of cornea'], 'label': 'corneal epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000576': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000576', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000576', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0001054', 'http://purl.obolibrary.org/obo/CL_0002396', 'http://purl.obolibrary.org/obo/CL_0000839', 'http://purl.obolibrary.org/obo/CL_0000559'], 'synonymLabels': [], 'label': 'monocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000577': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000577', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000577', 'parent': 'http://purl.obolibrary.org/obo/CL_0002079', 'children': [], 'synonymLabels': ['Kulchitsky cell', 'argentaffin cell', 'type EC enteroendocrine cell'], 'label': 'enterochromaffin cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000583': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000583', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000583', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['dust cell'], 'label': 'alveolar macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000584': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000584', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000584', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'enterocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000604': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000604', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000604', 'parent': 'http://purl.obolibrary.org/obo/CL_0000287', 'children': [], 'synonymLabels': [], 'label': 'retinal rod cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000623': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000623', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000623', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_eomes-low-liver-nk-cell', 'https://purl.org/ccf/ASCTB-TEMP_tbet-low-liver-nk-cell'], 'synonymLabels': ['natural killer cell', 'NK cell', 'nk cell'], 'label': 'natural killer (nk) cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000624': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000624', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000624', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD4-positive, alpha-beta T lymphocyte', 'CD4-positive, alpha-beta T-cell', 'CD4-positive, alpha-beta T-lymphocyte', 'CD4-positive, alpha-beta T cell', 'cd4+ t-cell', 'cd4+t cell'], 'label': 'cd4 t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000625': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000625', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000625', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-positive, alpha-beta T cell', 'CD8-positive, alpha-beta T lymphocyte', 'CD8-positive, alpha-beta T-cell', 'CD8-positive, alpha-beta T-lymphocyte', 'cd8+ t cell', 'cd8+ t-cells', 'mature cd8 t cell'], 'label': 'cd8 t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000632': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000632', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000632', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['hepatic perisinusoidal cell', 'Ito cell', 'perisinusoidal cell', 'hepatic stellate cell'], 'label': 'quiescent hepatic stellate cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000636': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000636', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000636', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Mueller cell', 'Muller cell', 'Müller cell', 'Muller glia'], 'label': 'muller glia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000644': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000644', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000644', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_bgl51'], 'synonymLabels': ['Bergmann glial cell', 'Bergmann astrocyte', 'Bergmann glial cell of cerebellum'], 'label': 'bergmann glial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000646': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000646', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000646', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['basal cell'], 'label': 'keratinocyte (basal)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000648': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000648', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000648', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['JG cell', 'renin secreting cell', 'kidney granular cell'], 'label': 'juxtaglomerular granular cell (renin positive)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000649': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000649', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000649', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['prickle cell', 'prickle cell of epidermis'], 'label': 'keratinocytes (spinous)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000653': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000653', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000653', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['glomerular podocyte', 'glomerular visceral epithelial cell', 'kidney podocyte', 'renal podocyte'], 'label': 'podocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000654': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000654', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000654', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'primary oocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000669': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000669', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000669', 'parent': 'http://purl.obolibrary.org/obo/CL_0008034', 'children': [], 'synonymLabels': ['adventitial reticular cell', 'ARC', 'cell of Rouget', 'pericyte cell', 'pericyte of Rouget', 'pericyte', 'splenic pericyte'], 'label': 'perictye'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000679': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000679', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000679', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051101', 'http://purl.obolibrary.org/obo/PCL_0051102', 'http://purl.obolibrary.org/obo/PCL_0051103', 'http://purl.obolibrary.org/obo/PCL_0051104', 'http://purl.obolibrary.org/obo/PCL_0051105', 'http://purl.obolibrary.org/obo/PCL_0051106', 'http://purl.obolibrary.org/obo/PCL_0051107', 'http://purl.obolibrary.org/obo/PCL_0051108', 'http://purl.obolibrary.org/obo/PCL_0051109', 'http://purl.obolibrary.org/obo/PCL_0051110', 'http://purl.obolibrary.org/obo/PCL_0051111', 'http://purl.obolibrary.org/obo/PCL_0051112', 'http://purl.obolibrary.org/obo/PCL_0051113', 'http://purl.obolibrary.org/obo/PCL_0051085', 'http://purl.obolibrary.org/obo/PCL_0051098', 'http://purl.obolibrary.org/obo/PCL_0051099', 'http://purl.obolibrary.org/obo/PCL_0051100', 'http://purl.obolibrary.org/obo/PCL_0015107', 'http://purl.obolibrary.org/obo/PCL_0015105', 'http://purl.obolibrary.org/obo/PCL_0015108', 'http://purl.obolibrary.org/obo/PCL_0015104', 'http://purl.obolibrary.org/obo/PCL_0015109', 'http://purl.obolibrary.org/obo/PCL_0015106'], 'synonymLabels': [], 'label': 'glutamatergic neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000682': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000682', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000682', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['M-cell', 'microfold cell', 'M cell of gut'], 'label': 'm cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000706': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000706', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000706', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051077', 'http://purl.obolibrary.org/obo/PCL_0051078', 'http://purl.obolibrary.org/obo/PCL_0051079', 'http://purl.obolibrary.org/obo/PCL_0051080', 'http://purl.obolibrary.org/obo/PCL_0051081', 'http://purl.obolibrary.org/obo/PCL_0051082', 'http://purl.obolibrary.org/obo/PCL_0051083'], 'synonymLabels': ['epithelial cell of choroid plexus', 'choroid plexus epithelial cell'], 'label': 'choroid plexus cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000711': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000711', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000711', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cumulus cell'], 'label': 'cumulus granulosa cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000738': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000738', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000738', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['leucocyte', 'white blood cell'], 'label': 'leukocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000740': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000740', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000740', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': ['http://purl.obolibrary.org/obo/CL_4023188', 'http://purl.obolibrary.org/obo/CL_4023189'], 'synonymLabels': ['gangliocyte', 'ganglion cell of retina', 'retinal ganglion cell'], 'label': 'ganglion cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000743': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000743', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000743', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'hypertrophic chondrocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000745': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000745', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000745', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['retina horizontal cell'], 'label': 'horizontal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000746': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000746', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000746', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cardiac muscle fiber', 'cardiac myocyte', 'heart muscle cell', 'cardiac muscle cell'], 'label': 'cardiomyocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000748': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000748', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000748', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': ['http://purl.obolibrary.org/obo/CL_0000750', 'http://purl.obolibrary.org/obo/CL_0000749'], 'synonymLabels': ['retinal bipolar neuron'], 'label': 'bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000749': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000749', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000749', 'parent': 'http://purl.obolibrary.org/obo/CL_0000748', 'children': ['http://purl.obolibrary.org/obo/CL_4033019', 'http://purl.obolibrary.org/obo/CL_4033031', 'http://purl.obolibrary.org/obo/CL_4033032', 'http://purl.obolibrary.org/obo/CL_4033034', 'http://purl.obolibrary.org/obo/CL_0000751'], 'synonymLabels': ['ON-bipolar cell'], 'label': 'on bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000750': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000750', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000750', 'parent': 'http://purl.obolibrary.org/obo/CL_0000748', 'children': ['http://purl.obolibrary.org/obo/CL_4033027', 'http://purl.obolibrary.org/obo/CL_4033028', 'http://purl.obolibrary.org/obo/CL_4033029', 'http://purl.obolibrary.org/obo/CL_4033030', 'http://purl.obolibrary.org/obo/CL_4033033'], 'synonymLabels': ['OFF-bipolar cell'], 'label': 'off bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000751': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000751', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000751', 'parent': 'http://purl.obolibrary.org/obo/CL_0000749', 'children': [], 'synonymLabels': [], 'label': 'rod bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000764': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000764', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000764', 'parent': '', 'children': [], 'synonymLabels': ['erythropoietic cell', 'erythroid lineage cell'], 'label': 'erythroid'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000767': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000767', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000767', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['basophilic leukocyte', 'basophilic leucocyte'], 'label': 'basophil'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000771': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000771', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000771', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['eosinocyte', 'eosinophilic granulocyte', 'eosinophilic leucocyte', 'eosinophilic leukocyte'], 'label': 'eosinophil'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000775': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000775', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000775', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/CL_0002193', 'http://purl.obolibrary.org/obo/CL_0000836'], 'synonymLabels': ['neutrocyte', 'neutrophil leucocyte', 'neutrophil leukocyte', 'neutrophilic leucocyte', 'neutrophilic leukocyte', 'neutrophilic granulocyte'], 'label': 'neutrophil'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000784': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000784', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000784', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['DC2', 'interferon-producing cell', 'IPC', 'lymphoid dendritic cell', 'pDC', 'plasmacytoid monocyte', 'plasmacytoid T cell', 'T-associated plasma cell', 'type 2 DC'], 'label': 'plasmacytoid dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000786': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000786', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000786', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_plasma-cell-cd21'], 'synonymLabels': ['plasma B cell', 'plasma B-cell', 'plasmacyte', 'plasmocyte', 'plasma cell'], 'label': 'plasma'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000787': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000787', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000787', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['memory B lymphocyte', 'memory B-cell', 'memory B-lymphocyte', 'memory B cell', 'memory-like b cell'], 'label': 'memory b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000788': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000788', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000788', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['naive B cell', 'naive B lymphocyte', 'naive B-cell', 'naive B-lymphocyte'], 'label': 'naive b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000793': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000793', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000793', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD4-positive, alpha-beta intraepithelial T lymphocyte', 'CD4-positive, alpha-beta intraepithelial T-cell', 'CD4-positive, alpha-beta intraepithelial T-lymphocyte', 'CD4-positive, alpha-beta intraepithelial T cell'], 'label': 'surface intraepithelial cd4+ lymphocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000794': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000794', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000794', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-positive, alpha-beta cytotoxic T lymphocyte', 'CD8-positive, alpha-beta cytotoxic T-cell', 'CD8-positive, alpha-beta cytotoxic T-lymphocyte', 'CD8-positive, alpha-beta cytotoxic T cell'], 'label': 'cytotoxic t cells'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000796': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000796', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000796', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-positive, alpha-beta intraepithelial T lymphocyte', 'CD8-positive, alpha-beta intraepithelial T-cell', 'CD8-positive, alpha-beta intraepithelial T-lymphocyte', 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell'], 'label': 'surface intraepithelial cd8+ alph beta positive alpha/beta lymphocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000798': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000798', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000798', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['gamma-delta T lymphocyte', 'gamma-delta T-cell', 'gamma-delta T-lymphocyte', 'gammadelta T cell', 'gamma-delta T cell', 'gamma-delta t cell', 'gamma/delta t cells'], 'label': 'gamma delta t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000802': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000802', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000802', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-positive, gamma-delta intraepithelial T lymphocyte', 'CD8-positive, gamma-delta intraepithelial T-cell', 'CD8-positive, gamma-delta intraepithelial T-lymphocyte', 'CD8-alpha alpha positive, gamma-delta intraepithelial T cell'], 'label': 'surface intraepithelial cd8+ lymphocyte gamma/delta'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000809': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000809', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000809', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['double-positive, alpha-beta immature T lymphocyte', 'DP cell', 'DP thymocyte', 'double-positive, alpha-beta thymocyte'], 'label': 'double positive thymocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000814': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000814', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000814', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000824'], 'synonymLabels': ['mature natural killer T cell', 'mature natural killer T lymphocyte', 'mature natural killer T-cell', 'mature natural killer T-lymphocyte', 'mature NK T lymphocyte', 'mature NK T-cell', 'mature NK T-lymphocyte', 'mature NKT cell', 'mature NK T cell', 'natural killer t cell', 'nk lymphocyte', 'nk lymphocytes'], 'label': 'mature nk t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000815': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000815', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000815', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['regulatory T-lymphocyte', 'Treg', 'regulatory T lymphocyte', 'regulatory T-cell', 'regulatory T cell', 't reg', 't regulatory', 't regulatory cell'], 'label': 'regulatory t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000816': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000816', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000816', 'parent': 'http://purl.obolibrary.org/obo/CL_0000945', 'children': [], 'synonymLabels': ['immature B cell', 'immature B lymphocyte', 'immature B-cell', 'immature B-lymphocyte', 'newly formed B cell'], 'label': 'immature b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000817': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000817', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000817', 'parent': 'http://purl.obolibrary.org/obo/CL_0000945', 'children': [], 'synonymLabels': ['precursor B cell'], 'label': 'precursor b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000818': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000818', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000818', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['transitional stage B cell', 'transitional B cell', 'transitional stage B lymphocyte', 'transitional stage B-cell', 'transitional stage B-lymphocyte', 'transitional immature b cells'], 'label': 'transitional b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000824': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000824', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000824', 'parent': 'http://purl.obolibrary.org/obo/CL_0000814', 'children': [], 'synonymLabels': ['mature NK cell', 'mature natural killer cell'], 'label': 'mature natural killer'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000826': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000826', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000826', 'parent': 'http://purl.obolibrary.org/obo/CL_0000945', 'children': [], 'synonymLabels': ['pro-B cell', 'pro-B lymphocyte', 'pro-B-cell', 'pro-B-lymphocyte', 'progenitor B cell', 'progenitor B lymphocyte', 'progenitor B-cell', 'progenitor B-lymphocyte'], 'label': 'pro b progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000836': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000836', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000836', 'parent': 'http://purl.obolibrary.org/obo/CL_0000775', 'children': [], 'synonymLabels': [], 'label': 'promyelocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000837': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000837', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000837', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/CL_0000051', 'http://purl.obolibrary.org/obo/CL_0000049', 'http://purl.obolibrary.org/obo/CL_0000557', 'http://purl.obolibrary.org/obo/CL_0000936', 'http://purl.obolibrary.org/obo/CL_0000050'], 'synonymLabels': ['hematopoietic multipotent progenitor cell', 'hemopoietic progenitor cell', 'MPP'], 'label': 'hemopoietic stem cell/multipotent progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000839': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000839', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000839', 'parent': 'http://purl.obolibrary.org/obo/CL_0000576', 'children': [], 'synonymLabels': ['myeloid lineage restricted progenitor cell'], 'label': 'myeloid progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000840': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000840', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000840', 'parent': 'http://purl.obolibrary.org/obo/CL_0001056', 'children': [], 'synonymLabels': ['immature conventional dendritic cell', 'transitional dendritic cell (tdc)'], 'label': 'transitional dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000844': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000844', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000844', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_germinal-center-b-cell-cd21'], 'synonymLabels': ['GC B cell', 'GC B lymphocyte', 'GC B-cell', 'GC B-lymphocyte', 'germinal center B lymphocyte', 'germinal center B-cell', 'germinal center B-lymphocyte', 'germinal center B cell'], 'label': 'germinal center b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000845': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000845', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000845', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['marginal zone B cell of spleen', 'B cell of marginal zone of spleen', 'marginal zone of spleen B cell'], 'label': 'superficial zone b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000860': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000860', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000860', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['classical monocyte', 'inflammatory monocyte'], 'label': 'classical inflammatory monocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000866': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000866', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000866', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['thymic macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000872': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000872', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000872', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['splenic marginal zone macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000874': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000874', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000874', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['splenic red pulp macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000875': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000875', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000875', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['patrolling monocyte', 'resident monocyte', 'non-classical monocyte', 'non-classical or patrolling monocyte'], 'label': 'non classical monocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000876': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000876', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000876', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['splenic white pulp macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000877': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000877', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000877', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['splenic tingible body macrophage'], 'label': 'tingible body macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000882': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000882', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000882', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['thymic medullary macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000883': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000883', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000883', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['thymic cortical macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000887': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000887', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000887', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymph node subcapsular sinus macrophage'], 'label': 'macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000888': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000888', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000888', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymph node tingible body macrophage'], 'label': 'tingible body macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000895': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000895', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000895', 'parent': 'http://purl.obolibrary.org/obo/CL_0000084', 'children': [], 'synonymLabels': ['T.4Nve.Sp', 'Th0', 'naive thymus-derived CD4-positive, alpha-beta T lymphocyte', 'naive thymus-derived CD4-positive, alpha-beta T-cell', 'naive thymus-derived CD4-positive, alpha-beta T-lymphocyte', 'naive thymus-derived CD4-positive, alpha-beta T cell', 'naive cd4+ t cell', 'naive thymus-derived cd4-positive, alpha-beta t cell'], 'label': 'cd4 naive'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000897': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000897', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000897', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD4-positive, alpha-beta memory T lymphocyte', 'CD4-positive, alpha-beta memory T-cell', 'CD4-positive, alpha-beta memory T-lymphocyte', 'CD4-positive, alpha-beta memory T cell', 'cd4+ memory t cell', 'cd4+ t memory t cell', 'memory cd4+ t cell'], 'label': 'cd4 t cell memory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000899': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000899', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000899', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['Th17 T lymphocyte', 'Th17 T-cell', 'Th17 T-lymphocyte', 'helper T cell type 17', 'IL-17-producing CD4+ T helper', 'T helper cells type 17', 'T(H)-17 cell', 'Th17 CD4+ T cell', 'Th17 cell', 'Th17 T cell', 'T-helper 17 cell'], 'label': 'th17 cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000900': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000900', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000900', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['naive thymus-dervied CD8-positive, alpha-beta T lymphocyte', 'naive thymus-dervied CD8-positive, alpha-beta T-cell', 'naive thymus-dervied CD8-positive, alpha-beta T-lymphocyte', 'naive thymus-derived CD8-positive, alpha-beta T cell', 'naive cd8+ t cell', 'naive thymus-derived cd8-positive, alpha-beta t cell'], 'label': 'cd8 naive'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000905': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000905', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000905', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['effector CD4-positive, alpha-beta memory T cell', 'effector CD4-positive, alpha-beta memory T lymphocyte', 'effector CD4-positive, alpha-beta memory T-cell', 'effector CD4-positive, alpha-beta memory T-lymphocyte', 'effector memory CD4-positive, alpha-beta T lymphocyte', 'effector memory CD4-positive, alpha-beta T-cell', 'effector memory CD4-positive, alpha-beta T-lymphocyte', 'effector memory CD4-positive, alpha-beta T cell'], 'label': 'effector memory cd4-positive, alpha-beta t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000909': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000909', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000909', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-positive, alpha-beta memory T lymphocyte', 'CD8-positive, alpha-beta memory T-cell', 'CD8-positive, alpha-beta memory T-lymphocyte', 'CD8-positive, alpha-beta memory T cell', 'cd8+ t memory', 'cd8-positive, alpha-beta memory t cell', 'memory cd8+ t cell'], 'label': 'cd8 t cell memory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000910': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000910', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000910', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cytotoxic T lymphocyte', 'cytotoxic T-cell', 'cytotoxic T-lymphocyte', 'cytotoxic T cell', 't cytotoxic cell', 't killer'], 'label': 'cytotoxic t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000913': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000913', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000913', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['effector CD8-positive, alpha-beta memory T cell', 'effector CD8-positive, alpha-beta memory T lymphocyte', 'effector CD8-positive, alpha-beta memory T-cell', 'effector CD8-positive, alpha-beta memory T-lymphocyte', 'effector memory CD8-positive, alpha-beta T lymphocyte', 'effector memory CD8-positive, alpha-beta T-cell', 'effector memory CD8-positive, alpha-beta T-lymphocyte', 'effector memory CD8-positive, alpha-beta T cell', 'effector memory cd8-positive, alpha-beta t cell'], 'label': 'cd8 t cell effector memory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000914': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000914', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000914', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['immature NK T lymphocyte', 'immature NK T-cell', 'immature NK T-lymphocyte', 'immature NKT cell', 'immature NK T cell', 'nk/t lymphocyte'], 'label': 'immature nkt cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000915': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000915', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000915', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-alpha-alpha-positive, alpha-beta intraepithelial T lymphocyte', 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T-cell', 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T-lymphocyte', 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell'], 'label': 'surface intraepithelial cd8+ alph alpha positive alpha/beta lymphocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000921': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000921', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000921', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['classical NK T cell', 'type I NK T lymphocyte', 'type I NK T-cell', 'type I NK T-lymphocyte', 'type I NKT cell', 'type I NK T cell'], 'label': 'inkt'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000934': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000934', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000934', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD4-positive, alpha-beta cytotoxic T lymphocyte', 'CD4-positive, alpha-beta cytotoxic T-cell', 'CD4-positive, alpha-beta cytotoxic T-lymphocyte', 'CD4-positive, alpha-beta cytotoxic T cell'], 'label': 'cytotoxic cd4 t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000935': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000935', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000935', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD4-negative, CD8-negative, alpha-beta intraepithelial T lymphocyte', 'CD4-negative, CD8-negative, alpha-beta intraepithelial T-cell', 'CD4-negative, CD8-negative, alpha-beta intraepithelial T-lymphocyte', 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell'], 'label': 'surface intraepithelial cd4-cd8- lymphocyte alpha/beta'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000936': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000936', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000936', 'parent': 'http://purl.obolibrary.org/obo/CL_0000837', 'children': [], 'synonymLabels': ['early lymphoid progenitor', 'lymphoid-primed multipotent progenitor'], 'label': 'lympho-myeloid progenitor cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000938': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000938', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000938', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD16-CD56bright NK cell', 'CD16-negative, CD56-bright NK cell', 'CD56-bright cytokine secreting natural killer cell', 'CD56-bright cytokine secreting NK cell', 'CD16-negative, CD56-bright natural killer cell, human', 'nk cd56bright'], 'label': 'cd56 bright natural killer'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000940': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000940', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000940', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mucosal invariant T cell', 'mucosal invariant T lymphocyte', 'mucosal invariant T-cell', 'mucosal invariant T-lymphocyte', 'mucosal invariant t cell'], 'label': 'mucosal associated invariant t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000942': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000942', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000942', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['thymic plasmacytoid dendritic cell'], 'label': 'plasmacytoid dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000945': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000945', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000945', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000816', 'http://purl.obolibrary.org/obo/CL_0000817', 'http://purl.obolibrary.org/obo/CL_0000826'], 'synonymLabels': ['lymphocyte of B lineage'], 'label': 'b lineage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000970': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000970', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000970', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['non-class-switched memory B cell', 'unswitched memory B lymphocyte', 'unswitched memory B-cell', 'unswitched memory B-lymphocyte', 'unswitched memory B cell'], 'label': 'memory b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000972': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000972', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000972', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['class switched memory B cell', 'class switched memory B lymphocyte', 'class switched memory B-cell', 'class switched memory B-lymphocyte', 'switched b cell'], 'label': 'memory b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000980': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000980', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000980', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD27-positive, CD38-positive, CD20-negative B cell'], 'label': 'plasmablast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0000990': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0000990', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0000990', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['conventional dendritic cell', 'cDC', 'DC1', 'dendritic reticular cell', 'type 1 DC', 'dendritic cell (classical)', 'dendritic cell type 1'], 'label': 'conventional dc 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001006', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['dermal dendritic cell'], 'label': 'dendritic cell (dc1)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001035': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001035', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001035', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'bone cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001050', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001050', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['effector CD8-positive, alpha-beta T-lymphocyte', 'effector CD8-positive, alpha-beta T cell', 'effector CD8-positive, alpha-beta T lymphocyte', 'effector CD8-positive, alpha-beta T-cell', 'cd8+ t cell'], 'label': 'cd8 t cell effector memory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001054', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001054', 'parent': 'http://purl.obolibrary.org/obo/CL_0000576', 'children': [], 'synonymLabels': ['CD14-positive monocyte'], 'label': 'cd14 monocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001055': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001055', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001055', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['intermediate monocyte, human', 'CD14-positive, CD16-low monocyte'], 'label': 'monocytes'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001056', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001056', 'parent': '', 'children': ['http://purl.obolibrary.org/obo/CL_0000840'], 'synonymLabels': ['dendritic cell, human', 'dendritic cell', 'dendritic cell (dc)', 'dendritic cell (general)'], 'label': 'conventional dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001058', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001058', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['plasmacytoid dendritic cell, human', 'plasmacytoid dendritic cell', 'plasmacytoid dendritic cell (pdc)'], 'label': 'dendritic cell (plasmatoid)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001062', 'parent': 'http://purl.obolibrary.org/obo/CL_0000084', 'children': [], 'synonymLabels': ['CD8-positive TEMRA', 'CD8+ TEMRA', 'effector memory CD8-positive, alpha-beta T cell, terminally differentiated'], 'label': 'cd8 t cell effector memory cd45ra'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001065', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001065', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['innate lyphoid cell (ilc)'], 'label': 'innate lymphoid cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001067', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['group 1 innate lymphoid cell'], 'label': 'natural killer cell / innate lymphoid cell 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001069', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001069', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['nuocyte', 'ILC2', 'natural helper cell', 'group 2 innate lymphoid cell'], 'label': 'innate lymphoid cell 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001070', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001070', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['beige brown adipocyte', 'beige fat cell', 'beige/brite adipocyte', 'brite adipocyte', 'brite cell', 'brite fat cell'], 'label': 'beige adipocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001071', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['ILC3', 'group 3 innate lymphoid cell'], 'label': 'innate lymphoid cell 3'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001078': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001078', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001078', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['ILC3, human', 'group 3 innate lymphoid cell, human', 'innate lymphoid cell (type 3)'], 'label': 'group 3 innate lymphoid cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001087': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001087', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001087', 'parent': 'http://purl.obolibrary.org/obo/CL_0000084', 'children': [], 'synonymLabels': ['CD4-positive TEMRA', 'CD4+ TEMRA', 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated'], 'label': 'cd4 t cell effector memory cd45ra'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0001203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0001203', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0001203', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8-positive, alpha-beta memory T cell, CD45RO-positive', 'CD8-positive, alpha-beta memory T lymphocyte, CD45RO-positive', 'CD8-positive, alpha-beta memory T-cell, CD45RO-positive', 'CD8-positive, alpha-beta memory T-lymphocyte, CD45RO-positive'], 'label': 'cd8+ liver-resident memory t cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002038', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['T(FH)', 'Tfh', 'T follicular helper cell'], 'label': 't follicular helper cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002042', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['immature NK T cell stage IV'], 'label': 'lymphatic endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002059', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8alpha-positive thymic conventional dendritic cell', 'CD8alpha-alpha-positive thymic conventional dendritic cell', 'DC.8+.Th'], 'label': 'conventional dendritic cell 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002062', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['type I pneumocyte', 'AT1', 'ATI', 'lung type 1 cells', 'membranous pneumocytes', 'pulmonary alveolar type I cell', 'small alveolar cells', 'squamous alveolar cell', 'squamous alveolar lining cell', 'type 1 alveolar epithelial cells', 'type 1 pneumocyte', 'type I alveolar cells', 'type I alveolar epithelial cells'], 'label': 'alveolar type i cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002063': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002063', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002063', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['type II pneumocyte', 'AT2', 'ATII', 'cuboidal type II cell', 'granular pneumocyte', 'great alveolar cell', 'lung type 2 cell', 'TII', 'type 2 alveolar epithelial cell', 'type 2 alveolocyte', 'type 2 pneumocyte', 'type II alveolar cell', 'type II alveolar epithelial cell', 'type II alveolocyte'], 'label': 'alveolar type ii cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002064', 'parent': 'http://purl.obolibrary.org/obo/CL_1001599', 'children': [], 'synonymLabels': ['pancreatic acinar cell', 'acinar cell of pancreas'], 'label': 'acinar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002068', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002068', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['myocytus conducens cardiacus', 'Purkinje cell fiber', 'Purkinje muscle cell', 'Purkinje myocyte'], 'label': 'purkinje fiber cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002071', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['enterocyte of epithelium of large intestine', 'columnar cell of the colon', 'vacuolar absorptive cell'], 'label': 'absorptive'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002079', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0002080', 'http://purl.obolibrary.org/obo/CL_1001433', 'http://purl.obolibrary.org/obo/CL_0000577', 'http://purl.obolibrary.org/obo/CL_1000322'], 'synonymLabels': ['pancreatic ductal cell'], 'label': 'ductal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002080', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002080', 'parent': 'http://purl.obolibrary.org/obo/CL_0002079', 'children': [], 'synonymLabels': ['centroacinar cell of Langerhans', 'pancreatic centroacinar cell', 'pancreatic centro-acinar cell'], 'label': 'centroacinar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002088', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002088', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['interstitial cell of Cajal', 'ICC', 'intestinal pacemaker cell', 'interstitial cells of cajal'], 'label': 'interstitial cell of cajal'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002095', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002095', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['hilus cell of ovary', 'hilar cell of ovary'], 'label': 'hilar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002138': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002138', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002138', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0009115'], 'synonymLabels': ['LEC', 'lymphatic endothelial cell', 'hepatic lymphatic endothelial cell', 'lymphatic', 'lymphatic endothelium', 'lymphatic endothelium cell'], 'label': 'endothelial cell of lymphatic vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002144': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002144', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002144', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['capillary endothelium'], 'label': 'capillary endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002145': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002145', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002145', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'ciliated columnar cell of tracheobronchial tree'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002153': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002153', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002153', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['corneocyte'], 'label': 'keratinocyte (corneocyte)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002193', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002193', 'parent': 'http://purl.obolibrary.org/obo/CL_0000775', 'children': [], 'synonymLabels': [], 'label': 'myelocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002196', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['hepatic progenitor cell', 'liver progenitor cell', 'hepatic oval stem cell'], 'label': 'hepatic oval cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002201': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002201', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002201', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['renal beta-intercalated cell', 'type B intercalated cell', 'type B-IC'], 'label': 'intercalated cell type b'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002207': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002207', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002207', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['brush cell of trachea'], 'label': 'tuft cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002208': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002208', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002208', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['brush cell of bronchus'], 'label': 'tuft cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002224': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002224', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002224', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lens epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002225': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002225', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002225', 'parent': 'http://purl.obolibrary.org/obo/CL_0011004', 'children': [], 'synonymLabels': ['secondary lens fibre', 'secondary lens fiber'], 'label': 'mature fiber cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002228', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002228', 'parent': 'http://purl.obolibrary.org/obo/CL_0011004', 'children': [], 'synonymLabels': ['primary lens fibre'], 'label': 'primary lens fiber'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002255', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002255', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['stromal cell of endometrium', 'endometrial stromal fibroblast'], 'label': 'endometrial stromal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002262': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002262', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002262', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'endothelial cell of sinusoid'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002275': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002275', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002275', 'parent': 'http://purl.obolibrary.org/obo/CL_0008024', 'children': [], 'synonymLabels': ['pancreatic polypeptide-secreting cell', 'PP cell of pancreatic islet', 'PP-cell of pancreatic islet', 'pancreatic PP cell'], 'label': 'pp cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002292': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002292', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002292', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['type I cell of carotid body'], 'label': 'glomus cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002303', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['PE cell'], 'label': 'pigmented ciliary epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002304': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002304', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002304', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['nonpigmented ciliary epithelial cell', 'NPE cell'], 'label': 'non-pigmented ciliary epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002306': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002306', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002306', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney proximal tubule epithelial cell', 'epithelial cell of proximal tubule'], 'label': 'proximal tubule epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002329', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002329', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'basal epithelial cell of tracheobronchial tree'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002332', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002332', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'ciliated cell of the bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002337', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002337', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['bulge keratinocyte'], 'label': 'keratinocyte stem cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002340', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002340', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['luminal cell of prostate epithelium'], 'label': 'luminal epithelia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002341': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002341', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002341', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['basal cell of prostate epithelium'], 'label': 'basal epithelia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002343': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002343', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002343', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['decidual NK cell', 'dNK cell', 'decidual natural killer cell, human'], 'label': 'uterine nk cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002350', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002350', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endocardial endothelial cell', 'endothelial cell of endocardium'], 'label': 'endocardial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002363': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002363', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002363', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['corneal fibroblast', 'corneal keratocyte'], 'label': 'keratocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002364': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002364', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002364', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cTEC'], 'label': 'cortical thymic epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002394': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002394', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002394', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD141-positive myeloid dendritic cell', 'cdc1 myeloid dendritic cell', 'conventional dendritic cell cdc1', 'dendritic cell type 1 (dc1)'], 'label': 'cdc1 cd141-positive myeloid dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002396', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002396', 'parent': 'http://purl.obolibrary.org/obo/CL_0000576', 'children': [], 'synonymLabels': ['CD14-low, CD16-positive monocyte', 'non-classical monocyte, human'], 'label': 'cd16 monocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002399': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002399', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002399', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD1c-positive myeloid dendritic cell', 'cdc2 myeloid dendritic cell', 'conventional dc 2', 'conventional dendritic cell cdc2', 'dendritic cell type 2 (dc2)'], 'label': 'cdc2 cd1c-positive myeloid dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002410': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002410', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002410', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['pancreas stellate cell', 'PaSC'], 'label': 'pancreatic stellate cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002425': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002425', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002425', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['early T lineage precursor', 'ETP', 'preT.ETP.Th'], 'label': 'early thymic progenitor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002436': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002436', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002436', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mature CD4 single-positive thymocyte'], 'label': 'cd4+ t single positive thymocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002437': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002437', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002437', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mature CD8 single-positive thymocyte', 'T.8SP24-.Th', 'mature cd8 t cell'], 'label': 'cd8+ t single positive thymocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002453', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002453', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015118', 'http://purl.obolibrary.org/obo/PCL_0051033', 'http://purl.obolibrary.org/obo/PCL_0051034', 'http://purl.obolibrary.org/obo/PCL_0051035', 'http://purl.obolibrary.org/obo/PCL_0051036', 'http://purl.obolibrary.org/obo/PCL_0051037'], 'synonymLabels': [], 'label': 'oligodendrocyte precursor cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002457': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002457', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002457', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epidermal Langerhans cell'], 'label': 'langerhans cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002460', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002460', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8alpha-negative thymic conventional dendritic cell', 'DC.8-.Th'], 'label': 'conventional dendritic cell 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002521': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002521', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002521', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['subcutaneous adipocyte', 'subcutaneous fat cell'], 'label': 'adipocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002536': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002536', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002536', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['amniotic epithelial cell', 'epithelial cell of amnion'], 'label': 'amnion epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002543': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002543', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002543', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endothelial cell of vein', 'venous endothelial cell', 'vein endothelial cell', 'endothelial cell', 'venous endothelium'], 'label': 'blood endothelial cells'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002557': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002557', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002557', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'fibroblast of pulmonary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002558': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002558', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002558', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['fibroblast of villous mesenchyme'], 'label': 'placental stromal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002565': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002565', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002565', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'iris pigment epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002568': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002568', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002568', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [\"mesenchymal stem cell of Wharton's jelly\"], 'label': \"mesenchymal stromal cell of wharton's jelly\"}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002573': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002573', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002573', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['Schwann cell', 'schwann cell'], 'label': 'nerve/schwann cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002574': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002574', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002574', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['stromal cell of pancreas'], 'label': 'stromal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002576': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002576', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002576', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['perineurial glial cell', 'perineurial cells'], 'label': 'perineurial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002585': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002585', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002585', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['retinal blood vessel endothelial cell'], 'label': 'endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002586': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002586', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002586', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['retinal pigment epithelial cell'], 'label': 'retinal pigmented epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002591': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002591', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002591', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'smooth muscle cell of the pulmonary artery'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002592': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002592', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002592', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['smooth muscle cell of the coronary artery'], 'label': 'smooth muscle cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002597': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002597', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002597', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-bladder', 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-bladder', 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-bladder'], 'synonymLabels': ['smooth muscle cell of bladder'], 'label': 'smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002598': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002598', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002598', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'bronchial smooth muscle cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002604': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002604', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002604', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051054'], 'synonymLabels': ['astrocyte of the hippocampal formation', 'astrocyte of the hippocampus'], 'label': 'hippocampal astrocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002605': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002605', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002605', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015123', 'http://purl.obolibrary.org/obo/PCL_0015122', 'http://purl.obolibrary.org/obo/PCL_0015124', 'http://purl.obolibrary.org/obo/PCL_0051053', 'http://purl.obolibrary.org/obo/PCL_0051059'], 'synonymLabels': [], 'label': 'astrocyte of the cerebral cortex'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002619': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002619', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002619', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['EPC'], 'label': 'adult endothelial progenitor cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002620': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002620', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002620', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['skin fibroblast'], 'label': 'fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002652': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002652', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002652', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['HEV cell', 'endothelial cell of high endothelial venule'], 'label': 'ilv high endothelial venule endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0002677': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0002677', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0002677', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['naive regulatory T cell', 'naive regulatory T lymphocyte', 'naive regulatory T-cell', 'naive regulatory T-lymphocyte'], 'label': 'regulatory t cells'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0004219': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0004219', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0004219', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell', 'children': ['https://purl.org/ccf/ASCTB-TEMP_semilunar-cell'], 'synonymLabels': ['A2 amacrine cell'], 'label': 'a2 cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0004232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0004232', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0004232', 'parent': 'http://purl.obolibrary.org/obo/CL_0000561', 'children': [], 'synonymLabels': [], 'label': 'starburst amacrine cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0004252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0004252', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0004252', 'parent': 'http://purl.obolibrary.org/obo/CL_0000561', 'children': ['http://purl.obolibrary.org/obo/CL_0004253'], 'synonymLabels': ['medium field retinal amacrine cell'], 'label': 'medium-field cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0004253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0004253', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0004253', 'parent': 'http://purl.obolibrary.org/obo/CL_0004252', 'children': [], 'synonymLabels': ['wide field retinal amacrine cell'], 'label': 'wide field cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0005006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0005006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0005006', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ionocyte-epithelia'], 'synonymLabels': ['ionocyte'], 'label': 'ionocyte epithelia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0005019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0005019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0005019', 'parent': 'http://purl.obolibrary.org/obo/CL_0008024', 'children': [], 'synonymLabels': ['pancreatic epsilon cell', 'pancreatic E cell'], 'label': 'epsilon cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0008019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0008019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0008019', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mesenchyme cell'], 'label': 'mesenchymal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0008024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0008024', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0008024', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000171', 'http://purl.obolibrary.org/obo/CL_0000169', 'http://purl.obolibrary.org/obo/CL_0000173', 'http://purl.obolibrary.org/obo/CL_0005019', 'http://purl.obolibrary.org/obo/CL_0000509', 'http://purl.obolibrary.org/obo/CL_0002275'], 'synonymLabels': ['pancreatic endocrine cell'], 'label': 'endocrine cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0008034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0008034', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0008034', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0000669'], 'synonymLabels': [], 'label': 'mural cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0008036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0008036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0008036', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['EVT', 'extravillous cytotrophloblast'], 'label': 'extravillous trophoblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009009', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['paneth cell of colon', 'paneth cell of epithelium of colon', 'paneth-like cell'], 'label': 'paneth'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009011', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['transit amplifying cell of colon', 'colon transit amplifying cell', 'transient amplifying cell of colon', 'transient amplifying cell of crypt of Lieberkuhn of colon', 'transit amplifying cell of crypt of Lieberkuhn of colon', 'transit-amplifying cell of colon'], 'label': 'transient amplifying cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009016', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['stem cell of large intestine crypt of Lieberkuhn', 'intestinal crypt stem cell of large intestine'], 'label': 'epithelial stem cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009018', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lamina propria lymphocyte of large intestine', 'lymphocyte of large intestine lamina propria'], 'label': 'b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009068', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009068', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8aa(I) thymocyte'], 'label': 'cd8aa(i) thymocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009069', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009069', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CD8aa(II) thymocyte'], 'label': 'cd8aa(ii) thymocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009070', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009070', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'corticomedullary thymic epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009071', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'medullary thymic epithelial cell type 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009072', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'medullary thymic epithelial cell type 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009073': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009073', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009073', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'medullary thymic epithelial cell type 3'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009074', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'medullary thymic epithelial cell type 4'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009075', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009075', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'myo-medullary thymic epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009076': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009076', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009076', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'neuro-medullary thymic epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009077': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009077', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009077', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['subcapsular thymic epithelial cell'], 'label': 'subcapsular cortical epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009078': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009078', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009078', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['thymic fibroblast type 1'], 'label': 'thymic capsular fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009079', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['thymic fibroblast type 2'], 'label': 'thymic interlobular fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009080', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009080', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['brush cell of epithelium of small intestine', 'brush cell of epithelium proper of small intestine', 'brush cell of small intestine', 'tuft cell of epithelium of small intestine', 'tuft cell of small intestine'], 'label': 'tuft cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009081': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009081', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009081', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['specified double negative thymocyte (Homo sapiens)'], 'label': 'double negative thymocyte 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009082': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009082', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009082', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['committed double negative thymocyte (Homo sapiens)'], 'label': 'double negative thymocyte 3'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009083': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009083', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009083', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['rearranging double negative thymocyte (Homo sapiens)'], 'label': 'double negative thymocyte 4'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009084': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009084', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009084', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endometrial glandular epithelial cell', 'epithelial cell of endometrial gland'], 'label': 'endometrial epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009086': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009086', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009086', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'endothelial cell of respiratory system lymphatic vessel'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009089': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009089', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009089', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung pericyte cell', 'pulmonary pericyte'], 'label': 'lung pericyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009100', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009100', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['hepatic portal fibroblast'], 'label': 'portal fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009103': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009103', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009103', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymph node marginal reticular cell'], 'label': 'marginal reticular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009104': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009104', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009104', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['B cell zone reticular cell', 'lymph node germinal center dark zone fibroblastic reticular cell'], 'label': 'b cell zone reticular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009105': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009105', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009105', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['T cell zone reticular cell', 'lymph node T cell domain fibroblastic reticular cell'], 'label': 't cell zone reticular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009106', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009106', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymph node medullary reticular cell', 'medullary reticular cell of lymph node'], 'label': 'medullary reticular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009107', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymphatic endothelial cell of subcapsular sinus ceiling', 'lymphatic endothelial cell of subcapsular sinus ceiling of lymph node'], 'label': 'lymphatic endothelial cell -subcapsular sinus ceiling'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009108', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009108', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymphatic endothelial cell of subcapsular sinus floor', 'lymphatic endothelial cell of subcapsular sinus floor of lymph node'], 'label': 'lymphatic endothelial cell-subcapsular sinus floor'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009109': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009109', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009109', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymphatic endothelial cell of trabecula', 'lymphatic endothelial cell of lymph node trabecula', 'lymphatic endothelial cell of trabeculae'], 'label': 'lymphatic endothelial cell-trabeculae'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009110': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009110', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009110', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymphatic endothelial cell of lymph node medulla ceiling'], 'label': 'lymphatic endothelial cell of medulla ceiling'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009111': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009111', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009111', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymph node centrocyte'], 'label': 'centrocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009112': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009112', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009112', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymph node centroblast'], 'label': 'centroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009113': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009113', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009113', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['T follicular regulatory cell', 'follicular regulatory T cell'], 'label': 't follicular regulatory cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009114', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009114', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['monocytoid B cell'], 'label': 'monocytoid b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0009115': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0009115', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0009115', 'parent': 'http://purl.obolibrary.org/obo/CL_0002138', 'children': [], 'synonymLabels': [], 'label': 'lymph node lymphatic vessel endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0010008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0010008', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0010008', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endothelial cell'], 'label': 'cardiac endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0010012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0010012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0010012', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051117', 'http://purl.obolibrary.org/obo/PCL_0051133', 'http://purl.obolibrary.org/obo/PCL_0051166', 'http://purl.obolibrary.org/obo/PCL_0051167', 'http://purl.obolibrary.org/obo/PCL_0051168', 'http://purl.obolibrary.org/obo/PCL_0051169', 'http://purl.obolibrary.org/obo/PCL_0051405'], 'synonymLabels': ['cortical neuron', 'neuron of cerebral cortex'], 'label': 'cerebral cortex neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0011004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0011004', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0011004', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0002225', 'http://purl.obolibrary.org/obo/CL_0002228'], 'synonymLabels': ['lens fibre cell'], 'label': 'lens fiber cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0011005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0011005', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0011005', 'parent': 'http://purl.obolibrary.org/obo/CL_0000561', 'children': ['https://purl.org/ccf/ASCTB-TEMP_glutamic-acid-decarboxylase-65-cell'], 'synonymLabels': ['GABAergic interneuron', 'GABAergic inhibitory interneuron'], 'label': 'gabaergic interneuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0011031': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0011031', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0011031', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['monocyte-derived dendritic cell', 'MDDC cell'], 'label': 'monocyte-derived dc'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0011103': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0011103', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0011103', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-cgrp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-phi-neuron', 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-neuron', 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-cgrp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-sp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-enkephalin-neuron', 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vacht-neuron', 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-sp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-cardiac-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-sst-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-dbh-neuron', 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_sacral-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-cgrp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-sst-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-dbh-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-npy-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_superior-mesenteric-ganglion-sp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-enkephalin-neuron', 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-npy-neuron'], 'synonymLabels': [], 'label': 'sympathetic neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0012000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0012000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0012000', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051055', 'http://purl.obolibrary.org/obo/PCL_0051056', 'http://purl.obolibrary.org/obo/PCL_0051058'], 'synonymLabels': ['forebrain astrocyte'], 'label': 'astrocyte of the forebrain'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0012001': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0012001', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0012001', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051118', 'http://purl.obolibrary.org/obo/PCL_0051165', 'http://purl.obolibrary.org/obo/PCL_0051171', 'http://purl.obolibrary.org/obo/PCL_0051402'], 'synonymLabels': ['forebrain neuron'], 'label': 'neuron of the forebrain'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0017000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0017000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0017000', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'pulmonary ionocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0017002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0017002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0017002', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['prostate neuroendocrine cell', 'neuroendocrine cell of prostate epithelium', 'neuroendocrine cell of the prostate'], 'label': 'neuroendocrine epithelia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0017004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0017004', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0017004', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['telocyte (interstitial like cell of cajal)'], 'label': 'telocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0017011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0017011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0017011', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['hillock cell of prostatic urethral epithelium', 'hillock cell of prostatic urethra'], 'label': 'hillock epithelia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019002', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['chondrocyte of tracheobronchial tree'], 'label': 'tracheobronchial chondrocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019003', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019003', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['goblet cell of tracheobronchial tree'], 'label': 'tracheobronchial goblet cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019015', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019015', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung-resident eosinophil', 'rEos'], 'label': 'lung parenchyma resident eosinophil'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019017', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lymphatic vessel smooth muscle cell', 'smooth muscle cell of lymphatic vessel'], 'label': 'smooth muscle cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019018', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['smooth muscle cell of blood vessel', 'smooth muscle cell', 'vascular smooth muscle cell'], 'label': 'blood vessel smooth muscle cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019019', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['smooth muscle cell of tracheobronchial tree', 'tracheobronchial smooth muscle cell'], 'label': 'tracheobronchial smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019026', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019026', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['periportal region hepatocyte'], 'label': 'periportal hepatocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019028', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['midzonal hepatocyte', 'midzonal region hepatocyte'], 'label': 'mid zone hepatocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019029', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019029', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['centrilobular hepatocyte', 'centrilobular region hepatocyte'], 'label': 'pericentral hepatocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_0019032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_0019032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_0019032', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['intestinal brush cell', 'intestinal tuft cell'], 'label': 'tuft cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000223': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000223', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000223', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['pulmonary neuroendocrine cell'], 'label': 'lung neuroendocrine cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000271': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000271', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000271', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lung ciliated cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000279', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000279', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['non-striated muscle fiber of large intestine', 'smooth muscle cell of large intestine'], 'label': 'muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000299': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000299', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000299', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['fibroblast of connective tissue of prostate'], 'label': 'interstitial fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000301': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000301', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000301', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['fibroblast of subepithelial connective tissue of prostatic gland'], 'label': 'periprostatic fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000308': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000308', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000308', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-ureter', 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-ureter'], 'synonymLabels': ['fibrocyte of adventitia of ureter'], 'label': 'fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000309', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000309', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['adipocyte of epicardial fat', 'epicardial fat cell', 'epicardial adipocyte'], 'label': 'adipocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000321', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['large intestine crypt goblet cell'], 'label': 'goblet'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000322', 'parent': 'http://purl.obolibrary.org/obo/CL_0002079', 'children': [], 'synonymLabels': ['goblet cell of epithelium of pancreatic duct'], 'label': 'pancreatic goblet cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000324', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000324', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['duodenal goblet cell', 'goblet cell of epithelium proper of duodenum'], 'label': 'goblet cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000325': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000325', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000325', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['jejunal goblet cell', 'goblet cell of epithelium proper of jejunum'], 'label': 'goblet'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000326': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000326', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000326', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['ileal goblet cell', 'goblet cell of epithelium proper of ileum'], 'label': 'goblet'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000329', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000329', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['goblet cell of epithelium of trachea'], 'label': 'tracheal goblet cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000330', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000330', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'serous cell of epithelium of trachea'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000331', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'serous cell of epithelium of bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000344': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000344', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000344', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['paneth cell of epithelium proper of small intestine'], 'label': 'paneth cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000348': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000348', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000348', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'basal cell of epithelium of trachea'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000349': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000349', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000349', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['basal cell of epithelium of bronchus'], 'label': 'basal cell of bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000350', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000350', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'basal cell of epithelium of terminal bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000351': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000351', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000351', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'basal cell of epithelium of respiratory bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000352': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000352', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000352', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'basal cell of epithelium of lobular bronchiole'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000398': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000398', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000398', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endotheliocyte of hepatic sinusoid', 'liver sinusoidal endothelial cell', 'LSEC', 'endothelial cell of hepatic sinusoid'], 'label': 'liver sinusoid endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000412': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000412', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000412', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endothelial cell of arteriole'], 'label': 'arteriole endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000413': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000413', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000413', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['arterial endothelial cell', 'endothelial cell of artery', 'endothelial cell'], 'label': 'blood endothelial cells'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000414', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000414', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['venule endothelium'], 'label': 'endothelial cell of venule'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000417': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000417', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000417', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['myoepithelial cell of sweat gland', 'myoepithelial cell'], 'label': 'myoepithelial'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000452', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000452', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of parietal layer of glomerular capsule'], 'label': 'parietal epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000454': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000454', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000454', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_transitional-principal-intercalated-cell'], 'synonymLabels': ['kidney collecting duct epithelial cell', 'epithelial cell of renal collecting tubule'], 'label': 'collecting duct cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000457': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000457', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000457', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['mesothelial cell of visceral peritoneum'], 'label': 'mesothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000458': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000458', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000458', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['skin melanocyte', 'melanocyte of skin'], 'label': 'melanocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000477': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000477', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000477', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cardiac pacemaker cell of sinoatrial node', 'cardiac pacemaker cell of sinuatrial node', 'pacemaker cell of sinoatrial node', 'pacemaker cell of sinuatrial node'], 'label': 'pacemaker cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000486': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000486', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000486', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-prostatic-urethra'], 'synonymLabels': ['urothelial basal cell'], 'label': 'basal cell of urothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000487': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000487', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000487', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['smooth muscle fiber of prostate', 'smooth muscle cell of prostate'], 'label': 'prostate smooth muscle'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000489': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000489', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000489', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['reticular cell of splenic cord'], 'label': 'red pulp reticular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000493': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000493', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000493', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'mesothelial cell of visceral pleura'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000597': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000597', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000597', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['papillary tips cell'], 'label': 'papillary tip epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000691': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000691', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000691', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney interstitial myofibroblast'], 'label': 'myofibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000692': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000692', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000692', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney interstitial fibroblast'], 'label': 'fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000695': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000695', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000695', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney interstitial alternatively activated macrophage'], 'label': 'm2-macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000708': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000708', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000708', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-ureter', 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-ureter', 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-ureter', 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-ureter', 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-ureter'], 'synonymLabels': ['ureter adventitial cell'], 'label': 'myofibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000714': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000714', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000714', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney cortex collecting duct principal cell'], 'label': 'cortical collecting duct principal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000715': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000715', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000715', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney cortex collecting duct intercalated cell'], 'label': 'cortical collecting duct intercalated cell type a'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000716': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000716', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000716', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney outer medulla collecting duct principal cell'], 'label': 'outer medullary collecting duct principal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000717': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000717', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000717', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney outer medulla collecting duct intercalated cell'], 'label': 'outer medullary collecting duct intercalated cell type a'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000718': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000718', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000718', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney inner medulla collecting duct principal cell'], 'label': 'inner medullary collecting duct cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000742': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000742', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000742', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['glomerular mesangial cell', 'intraglomerular mesangial cell'], 'label': 'mesangial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000768': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000768', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000768', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney connecting tubule epithelial cell'], 'label': 'connecting tubule cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000849': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000849', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000849', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney distal convoluted tubule epithelial cell'], 'label': 'distal convoluted tubule cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1000850': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1000850', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1000850', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['macula densa epithelial cell'], 'label': 'macula densa cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001005', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001005', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'glomerular capillary endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001033', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001033', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'peritubular capillary endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001096', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney afferent arteriole endothelial cell'], 'label': 'afferent arteriole endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001099': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001099', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001099', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney efferent arteriole endothelial cell'], 'label': 'efferent arteriole endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001106', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001106', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle thick ascending limb epithelial cell'], 'label': 'thick ascending limb cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001107', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle thin ascending limb epithelial cell'], 'label': 'ascending thin limb cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001108', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001108', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle medullary thick ascending limb epithelial cell'], 'label': 'medullary thick ascending limb cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001109': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001109', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001109', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle cortical thick ascending limb epithelial cell'], 'label': 'cortical thick ascending limb cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001111': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001111', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001111', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle thin descending limb epithelial cell'], 'label': 'descending thin limb cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001131': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001131', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001131', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['vasa recta ascending limb cell'], 'label': 'ascending vasa recta endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001285', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001285', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['vasa recta descending limb cell'], 'label': 'descending vasa recta endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001318': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001318', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001318', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['renal interstitial pericyte'], 'label': 'vascular smooth muscle cell/pericyte (general)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001319', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001319', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-bladder', 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-bladder', 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-bladder', 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-bladder'], 'synonymLabels': ['bladder cell'], 'label': 'myofibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001428': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001428', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001428', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-bladder-urothelium', 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-ureter-urothelium', 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-bladder-urothelium', 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-ureter-urothelium', 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-bladder-urothelium', 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-ureter-urothelium'], 'synonymLabels': ['bladder urothelial cell'], 'label': 'urothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001431': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001431', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001431', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney collecting duct principal cell'], 'label': 'collecting duct principal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001432': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001432', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001432', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney collecting duct intercalated cell'], 'label': 'collecting duct intercalated cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001433': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001433', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001433', 'parent': 'http://purl.obolibrary.org/obo/CL_0002079', 'children': ['https://purl.org/ccf/ASCTB-TEMP_cuboidal-cell', 'https://purl.org/ccf/ASCTB-TEMP_low-columnar-cell'], 'synonymLabels': ['exocrine pancreas cell', 'epithelial cell of exocrine pancreas'], 'label': 'ductal epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001474': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001474', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001474', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051223', 'http://purl.obolibrary.org/obo/PCL_0051224', 'http://purl.obolibrary.org/obo/PCL_0051225', 'http://purl.obolibrary.org/obo/PCL_0051226', 'http://purl.obolibrary.org/obo/PCL_0051227', 'http://purl.obolibrary.org/obo/PCL_0051228', 'http://purl.obolibrary.org/obo/PCL_0051229', 'http://purl.obolibrary.org/obo/PCL_0051230', 'http://purl.obolibrary.org/obo/PCL_0051231', 'http://purl.obolibrary.org/obo/PCL_0051232', 'http://purl.obolibrary.org/obo/PCL_0051233', 'http://purl.obolibrary.org/obo/PCL_0051234', 'http://purl.obolibrary.org/obo/PCL_0051235', 'http://purl.obolibrary.org/obo/PCL_0051427', 'http://purl.obolibrary.org/obo/PCL_0051207', 'http://purl.obolibrary.org/obo/PCL_0051208', 'http://purl.obolibrary.org/obo/PCL_0051209', 'http://purl.obolibrary.org/obo/PCL_0051210', 'http://purl.obolibrary.org/obo/PCL_0051211', 'http://purl.obolibrary.org/obo/PCL_0051212', 'http://purl.obolibrary.org/obo/PCL_0051213', 'http://purl.obolibrary.org/obo/PCL_0051214', 'http://purl.obolibrary.org/obo/PCL_0051215', 'http://purl.obolibrary.org/obo/PCL_0051216', 'http://purl.obolibrary.org/obo/PCL_0051217', 'http://purl.obolibrary.org/obo/PCL_0051218', 'http://purl.obolibrary.org/obo/PCL_0051219', 'http://purl.obolibrary.org/obo/PCL_0051220', 'http://purl.obolibrary.org/obo/PCL_0051221', 'http://purl.obolibrary.org/obo/PCL_0051222', 'http://purl.obolibrary.org/obo/PCL_0051428', 'http://purl.obolibrary.org/obo/PCL_0051431'], 'synonymLabels': ['gamma-aminobutyric acid (GABA)ergic spiny projection neuron', 'gamma-aminobutyric acid ergic spiny projection neuron', 'striatal medium spiny neuron'], 'label': 'medium spiny neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001568': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001568', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001568', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'pulmonary artery endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001577': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001577', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001577', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'tonsil squamous cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001599': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001599', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001599', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/CL_0002064'], 'synonymLabels': [], 'label': 'pancreas exocrine glandular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_1001607': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_1001607', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_1001607', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_effector-chondrocyte', 'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-1', 'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-2', 'https://purl.org/ccf/ASCTB-TEMP_homeostatic-chodrocyte', 'http://purl.obolibrary.org/obo/CL_0000743', 'https://purl.org/ccf/ASCTB-TEMP_prefibrocartilage-chondrocyte', 'https://purl.org/ccf/ASCTB-TEMP_prehypertrophic-chondrocyte', 'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-1', 'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-2', 'https://purl.org/ccf/ASCTB-TEMP_reparative-chondrocyte'], 'synonymLabels': ['articular chondrocyte'], 'label': 'articular chondrocyte of the femur'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000032', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': ['https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-vip-phi-neuron', 'https://purl.org/ccf/ASCTB-TEMP_lower-airway-ganglion-chat-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-calr-som-sp-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nf200-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-chat-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-gal-neuron', 'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-nnos-neuron', 'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_ovarian-nerve-plexus-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vacht-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-npy-vacht-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-dbh-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-vacht-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-nnos-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-neuron', 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-phi-neuron', 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-nnos-neuron', 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-th-cholinergic-neuron', 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-vip-phi-neuron', 'https://purl.org/ccf/ASCTB-TEMP_vestibular-ganglion-sp-neuron'], 'synonymLabels': ['peripheral neuron', 'PNS neuron'], 'label': 'peripheral nervous system neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000040', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-bladder'], 'synonymLabels': ['bladder microvascular endothelial cell'], 'label': 'endothelium'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000053': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000053', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000053', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000054', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000054', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['hepatic pit cell'], 'label': 'pit cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000061': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000061', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000061', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['placental amniotic mesenchymal stromal cell'], 'label': 'amnion mesenchymal stromal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000062', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['placental villus capillary endothelial cell'], 'label': 'placental microvascular endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000066', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000066', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cardiac ventricle fibroblast'], 'label': 'fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000067', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cardiac atrium fibroblast'], 'label': 'fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_2000091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_2000091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_2000091', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'endometrial microvascular endothelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_3000001': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_3000001', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_3000001', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['Hofbauer cell'], 'label': 'hofbauer cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_3000002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_3000002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_3000002', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['sympathetic noradrenergic neuron'], 'label': 'sympathetic noradrenergic nerve'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023008', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023008', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051137', 'http://purl.obolibrary.org/obo/PCL_0051138', 'http://purl.obolibrary.org/obo/PCL_0051140', 'http://purl.obolibrary.org/obo/PCL_0051141', 'http://purl.obolibrary.org/obo/PCL_0051142', 'http://purl.obolibrary.org/obo/PCL_0051143', 'http://purl.obolibrary.org/obo/PCL_0051144', 'http://purl.obolibrary.org/obo/PCL_0051145', 'http://purl.obolibrary.org/obo/PCL_0051146', 'http://purl.obolibrary.org/obo/PCL_0051147', 'http://purl.obolibrary.org/obo/PCL_0051148', 'http://purl.obolibrary.org/obo/PCL_0051149', 'http://purl.obolibrary.org/obo/PCL_0051150', 'http://purl.obolibrary.org/obo/PCL_0051151', 'http://purl.obolibrary.org/obo/PCL_0051152', 'http://purl.obolibrary.org/obo/PCL_0051153', 'http://purl.obolibrary.org/obo/PCL_0015073', 'http://purl.obolibrary.org/obo/PCL_0015074', 'http://purl.obolibrary.org/obo/PCL_0015075', 'http://purl.obolibrary.org/obo/PCL_0015077', 'http://purl.obolibrary.org/obo/PCL_0015080', 'http://purl.obolibrary.org/obo/PCL_0015081', 'http://purl.obolibrary.org/obo/PCL_0015076', 'http://purl.obolibrary.org/obo/PCL_0015078', 'http://purl.obolibrary.org/obo/PCL_0015086', 'http://purl.obolibrary.org/obo/PCL_0015082', 'http://purl.obolibrary.org/obo/PCL_0015084', 'http://purl.obolibrary.org/obo/PCL_0015087', 'http://purl.obolibrary.org/obo/PCL_0015090', 'http://purl.obolibrary.org/obo/PCL_0015091', 'http://purl.obolibrary.org/obo/PCL_0015083', 'http://purl.obolibrary.org/obo/PCL_0015092', 'http://purl.obolibrary.org/obo/PCL_0015093', 'http://purl.obolibrary.org/obo/PCL_0015088', 'http://purl.obolibrary.org/obo/PCL_0015085', 'http://purl.obolibrary.org/obo/PCL_0015097', 'http://purl.obolibrary.org/obo/PCL_0015089', 'http://purl.obolibrary.org/obo/PCL_0015094', 'http://purl.obolibrary.org/obo/PCL_0015095', 'http://purl.obolibrary.org/obo/PCL_0015096', 'http://purl.obolibrary.org/obo/PCL_0051121', 'http://purl.obolibrary.org/obo/PCL_0051122', 'http://purl.obolibrary.org/obo/PCL_0051123', 'http://purl.obolibrary.org/obo/PCL_0051124', 'http://purl.obolibrary.org/obo/PCL_0051125', 'http://purl.obolibrary.org/obo/PCL_0051126', 'http://purl.obolibrary.org/obo/PCL_0051127', 'http://purl.obolibrary.org/obo/PCL_0051128', 'http://purl.obolibrary.org/obo/PCL_0051129', 'http://purl.obolibrary.org/obo/PCL_0051130', 'http://purl.obolibrary.org/obo/PCL_0051131', 'http://purl.obolibrary.org/obo/PCL_0051132', 'http://purl.obolibrary.org/obo/PCL_0051134', 'http://purl.obolibrary.org/obo/PCL_0051135', 'http://purl.obolibrary.org/obo/PCL_0051136', 'http://purl.obolibrary.org/obo/PCL_0051139'], 'synonymLabels': ['IT neuron'], 'label': 'intratelencephalic-projecting glutamatergic cortical neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023009', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015111', 'http://purl.obolibrary.org/obo/PCL_0015112', 'http://purl.obolibrary.org/obo/PCL_0015110', 'http://purl.obolibrary.org/obo/PCL_0051114', 'http://purl.obolibrary.org/obo/PCL_0051115', 'http://purl.obolibrary.org/obo/PCL_0051119'], 'synonymLabels': ['ET projecting neuron'], 'label': 'extratelencephalic-projecting glutamatergic cortical neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023012', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051084', 'http://purl.obolibrary.org/obo/PCL_0051086', 'http://purl.obolibrary.org/obo/PCL_0051087', 'http://purl.obolibrary.org/obo/PCL_0051088', 'http://purl.obolibrary.org/obo/PCL_0051089', 'http://purl.obolibrary.org/obo/PCL_0051090', 'http://purl.obolibrary.org/obo/PCL_0051091', 'http://purl.obolibrary.org/obo/PCL_0051092', 'http://purl.obolibrary.org/obo/PCL_0051093', 'http://purl.obolibrary.org/obo/PCL_0051094', 'http://purl.obolibrary.org/obo/PCL_0051095', 'http://purl.obolibrary.org/obo/PCL_0051096', 'http://purl.obolibrary.org/obo/PCL_0051097', 'http://purl.obolibrary.org/obo/PCL_0015114', 'http://purl.obolibrary.org/obo/PCL_0015113', 'http://purl.obolibrary.org/obo/PCL_0015115', 'http://purl.obolibrary.org/obo/PCL_0015116', 'http://purl.obolibrary.org/obo/PCL_0015117'], 'synonymLabels': ['NP neuron'], 'label': 'near-projecting glutamatergic cortical neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023013', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015099', 'http://purl.obolibrary.org/obo/PCL_0015100', 'http://purl.obolibrary.org/obo/PCL_0015101', 'http://purl.obolibrary.org/obo/PCL_0015102', 'http://purl.obolibrary.org/obo/PCL_0015098', 'http://purl.obolibrary.org/obo/PCL_0015103'], 'synonymLabels': ['CT projecting neuron'], 'label': 'corticothalamic-projecting glutamatergic cortical neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023039', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051154', 'http://purl.obolibrary.org/obo/PCL_0051155', 'http://purl.obolibrary.org/obo/PCL_0051156', 'http://purl.obolibrary.org/obo/PCL_0051157', 'http://purl.obolibrary.org/obo/PCL_0051158', 'http://purl.obolibrary.org/obo/PCL_0051159', 'http://purl.obolibrary.org/obo/PCL_0051160', 'http://purl.obolibrary.org/obo/PCL_0051161', 'http://purl.obolibrary.org/obo/PCL_0051162', 'http://purl.obolibrary.org/obo/PCL_0051163', 'http://purl.obolibrary.org/obo/PCL_0051172', 'http://purl.obolibrary.org/obo/PCL_0051173', 'http://purl.obolibrary.org/obo/PCL_0051174', 'http://purl.obolibrary.org/obo/PCL_0051175', 'http://purl.obolibrary.org/obo/PCL_0051176', 'http://purl.obolibrary.org/obo/PCL_0051406', 'http://purl.obolibrary.org/obo/PCL_0051407', 'http://purl.obolibrary.org/obo/PCL_0051408', 'http://purl.obolibrary.org/obo/PCL_0051409', 'http://purl.obolibrary.org/obo/PCL_0051420'], 'synonymLabels': [], 'label': 'amygdala excitatory neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023057': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023057', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023057', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051299', 'http://purl.obolibrary.org/obo/PCL_0051300', 'http://purl.obolibrary.org/obo/PCL_0051301', 'http://purl.obolibrary.org/obo/PCL_0051302', 'http://purl.obolibrary.org/obo/PCL_0051303', 'http://purl.obolibrary.org/obo/PCL_0051304', 'http://purl.obolibrary.org/obo/PCL_0051305', 'http://purl.obolibrary.org/obo/PCL_0051306', 'http://purl.obolibrary.org/obo/PCL_0051307', 'http://purl.obolibrary.org/obo/PCL_0051308'], 'synonymLabels': ['cerebellar inhibitory GABAergic interneuron'], 'label': 'cerebellar inhibitory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023059', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051038', 'http://purl.obolibrary.org/obo/PCL_0051039', 'http://purl.obolibrary.org/obo/PCL_0051040', 'http://purl.obolibrary.org/obo/PCL_0051042', 'http://purl.obolibrary.org/obo/PCL_0051043', 'http://purl.obolibrary.org/obo/PCL_0051044', 'http://purl.obolibrary.org/obo/PCL_0051076'], 'synonymLabels': ['differentiation-committed oligodendrocyte precursor', 'COP', 'committed oligodendrocyte precursor'], 'label': 'committed oligodendrocyte precursor cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023060': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023060', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023060', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051120', 'http://purl.obolibrary.org/obo/PCL_0051164', 'http://purl.obolibrary.org/obo/PCL_0051170', 'http://purl.obolibrary.org/obo/PCL_0051180', 'http://purl.obolibrary.org/obo/PCL_0051181', 'http://purl.obolibrary.org/obo/PCL_0051182', 'http://purl.obolibrary.org/obo/PCL_0051183', 'http://purl.obolibrary.org/obo/PCL_0051184', 'http://purl.obolibrary.org/obo/PCL_0051185', 'http://purl.obolibrary.org/obo/PCL_0051186', 'http://purl.obolibrary.org/obo/PCL_0051187', 'http://purl.obolibrary.org/obo/PCL_0051188', 'http://purl.obolibrary.org/obo/PCL_0051189', 'http://purl.obolibrary.org/obo/PCL_0051190', 'http://purl.obolibrary.org/obo/PCL_0051116'], 'synonymLabels': ['hippocampal CA1-3 neuron'], 'label': 'hippocampal ca1-3 neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023061': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023061', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023061', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051191', 'http://purl.obolibrary.org/obo/PCL_0051192', 'http://purl.obolibrary.org/obo/PCL_0051193', 'http://purl.obolibrary.org/obo/PCL_0051194', 'http://purl.obolibrary.org/obo/PCL_0051195', 'http://purl.obolibrary.org/obo/PCL_0051196', 'http://purl.obolibrary.org/obo/PCL_0051197', 'http://purl.obolibrary.org/obo/PCL_0051198', 'http://purl.obolibrary.org/obo/PCL_0051199'], 'synonymLabels': ['hippocampal CA4 neuron'], 'label': 'hippocampal ca4 neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023062', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051200', 'http://purl.obolibrary.org/obo/PCL_0051201', 'http://purl.obolibrary.org/obo/PCL_0051202', 'http://purl.obolibrary.org/obo/PCL_0051203', 'http://purl.obolibrary.org/obo/PCL_0051204', 'http://purl.obolibrary.org/obo/PCL_0051205', 'http://purl.obolibrary.org/obo/PCL_0051206'], 'synonymLabels': ['dentate gyrus neuron'], 'label': 'hippocampal dentate gyrus neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023063': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023063', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023063', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015066', 'http://purl.obolibrary.org/obo/PCL_0015050', 'http://purl.obolibrary.org/obo/PCL_0015068', 'http://purl.obolibrary.org/obo/PCL_0015052', 'http://purl.obolibrary.org/obo/PCL_0015051', 'http://purl.obolibrary.org/obo/PCL_0015072', 'http://purl.obolibrary.org/obo/PCL_0015040', 'http://purl.obolibrary.org/obo/PCL_0015067', 'http://purl.obolibrary.org/obo/PCL_0015047', 'http://purl.obolibrary.org/obo/PCL_0015063', 'http://purl.obolibrary.org/obo/PCL_0015064', 'http://purl.obolibrary.org/obo/PCL_0015065', 'http://purl.obolibrary.org/obo/PCL_0015061', 'http://purl.obolibrary.org/obo/PCL_0015041', 'http://purl.obolibrary.org/obo/PCL_0015046', 'http://purl.obolibrary.org/obo/PCL_0015045', 'http://purl.obolibrary.org/obo/PCL_0015062', 'http://purl.obolibrary.org/obo/PCL_0015042', 'http://purl.obolibrary.org/obo/PCL_0015070', 'http://purl.obolibrary.org/obo/PCL_0015069', 'http://purl.obolibrary.org/obo/PCL_0015059', 'http://purl.obolibrary.org/obo/PCL_0015071', 'http://purl.obolibrary.org/obo/PCL_0015044', 'http://purl.obolibrary.org/obo/PCL_0015060', 'http://purl.obolibrary.org/obo/PCL_0015053', 'http://purl.obolibrary.org/obo/PCL_0015055', 'http://purl.obolibrary.org/obo/PCL_0015054', 'http://purl.obolibrary.org/obo/PCL_0015056', 'http://purl.obolibrary.org/obo/PCL_0015043', 'http://purl.obolibrary.org/obo/PCL_0015057', 'http://purl.obolibrary.org/obo/PCL_0015048', 'http://purl.obolibrary.org/obo/PCL_0015049', 'http://purl.obolibrary.org/obo/PCL_0015058', 'http://purl.obolibrary.org/obo/PCL_0051237', 'http://purl.obolibrary.org/obo/PCL_0051240', 'http://purl.obolibrary.org/obo/PCL_0051241', 'http://purl.obolibrary.org/obo/PCL_0051242', 'http://purl.obolibrary.org/obo/PCL_0051243', 'http://purl.obolibrary.org/obo/PCL_0051244', 'http://purl.obolibrary.org/obo/PCL_0051245', 'http://purl.obolibrary.org/obo/PCL_0051246', 'http://purl.obolibrary.org/obo/PCL_0051247', 'http://purl.obolibrary.org/obo/PCL_0051248', 'http://purl.obolibrary.org/obo/PCL_0051249', 'http://purl.obolibrary.org/obo/PCL_0051250', 'http://purl.obolibrary.org/obo/PCL_0051251', 'http://purl.obolibrary.org/obo/PCL_0051252', 'http://purl.obolibrary.org/obo/PCL_0051253', 'http://purl.obolibrary.org/obo/PCL_0051254', 'http://purl.obolibrary.org/obo/PCL_0051255', 'http://purl.obolibrary.org/obo/PCL_0051256', 'http://purl.obolibrary.org/obo/PCL_0051257', 'http://purl.obolibrary.org/obo/PCL_0051258', 'http://purl.obolibrary.org/obo/PCL_0051259', 'http://purl.obolibrary.org/obo/PCL_0051260', 'http://purl.obolibrary.org/obo/PCL_0051261', 'http://purl.obolibrary.org/obo/PCL_0051262', 'http://purl.obolibrary.org/obo/PCL_0051263', 'http://purl.obolibrary.org/obo/PCL_0051264'], 'synonymLabels': ['MGE interneuron', 'medial ganglionic eminence derived interneuron'], 'label': 'mge derived interneuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023064', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051277', 'http://purl.obolibrary.org/obo/PCL_0051278', 'http://purl.obolibrary.org/obo/PCL_0051279', 'http://purl.obolibrary.org/obo/PCL_0051280', 'http://purl.obolibrary.org/obo/PCL_0051281', 'http://purl.obolibrary.org/obo/PCL_0051282', 'http://purl.obolibrary.org/obo/PCL_0051283', 'http://purl.obolibrary.org/obo/PCL_0051284', 'http://purl.obolibrary.org/obo/PCL_0051285', 'http://purl.obolibrary.org/obo/PCL_0051286', 'http://purl.obolibrary.org/obo/PCL_0051287', 'http://purl.obolibrary.org/obo/PCL_0051288', 'http://purl.obolibrary.org/obo/PCL_0051289', 'http://purl.obolibrary.org/obo/PCL_0051290', 'http://purl.obolibrary.org/obo/PCL_0051291', 'http://purl.obolibrary.org/obo/PCL_0051292', 'http://purl.obolibrary.org/obo/PCL_0051293', 'http://purl.obolibrary.org/obo/PCL_0051294', 'http://purl.obolibrary.org/obo/PCL_0051295', 'http://purl.obolibrary.org/obo/PCL_0051296', 'http://purl.obolibrary.org/obo/PCL_0051297', 'http://purl.obolibrary.org/obo/PCL_0015014', 'http://purl.obolibrary.org/obo/PCL_0015015', 'http://purl.obolibrary.org/obo/PCL_0015001', 'http://purl.obolibrary.org/obo/PCL_0015002', 'http://purl.obolibrary.org/obo/PCL_0015009', 'http://purl.obolibrary.org/obo/PCL_0015008', 'http://purl.obolibrary.org/obo/PCL_0015016', 'http://purl.obolibrary.org/obo/PCL_0015018', 'http://purl.obolibrary.org/obo/PCL_0015017', 'http://purl.obolibrary.org/obo/PCL_0015027', 'http://purl.obolibrary.org/obo/PCL_0015020', 'http://purl.obolibrary.org/obo/PCL_0015012', 'http://purl.obolibrary.org/obo/PCL_0015022', 'http://purl.obolibrary.org/obo/PCL_0015023', 'http://purl.obolibrary.org/obo/PCL_0015013', 'http://purl.obolibrary.org/obo/PCL_0015019', 'http://purl.obolibrary.org/obo/PCL_0015025', 'http://purl.obolibrary.org/obo/PCL_0015024', 'http://purl.obolibrary.org/obo/PCL_0015021', 'http://purl.obolibrary.org/obo/PCL_0015032', 'http://purl.obolibrary.org/obo/PCL_0015037', 'http://purl.obolibrary.org/obo/PCL_0015036', 'http://purl.obolibrary.org/obo/PCL_0015029', 'http://purl.obolibrary.org/obo/PCL_0015003', 'http://purl.obolibrary.org/obo/PCL_0015005', 'http://purl.obolibrary.org/obo/PCL_0015004', 'http://purl.obolibrary.org/obo/PCL_0015010', 'http://purl.obolibrary.org/obo/PCL_0015011', 'http://purl.obolibrary.org/obo/PCL_0015026', 'http://purl.obolibrary.org/obo/PCL_0015033', 'http://purl.obolibrary.org/obo/PCL_0015034', 'http://purl.obolibrary.org/obo/PCL_0015030', 'http://purl.obolibrary.org/obo/PCL_0015028', 'http://purl.obolibrary.org/obo/PCL_0015039', 'http://purl.obolibrary.org/obo/PCL_0015007', 'http://purl.obolibrary.org/obo/PCL_0015038', 'http://purl.obolibrary.org/obo/PCL_0015035', 'http://purl.obolibrary.org/obo/PCL_0015006', 'http://purl.obolibrary.org/obo/PCL_0015031'], 'synonymLabels': ['CGE interneuron', 'caudal ganglionic eminence derived interneuron'], 'label': 'cge interneuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023068', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023068', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051373', 'http://purl.obolibrary.org/obo/PCL_0051446', 'http://purl.obolibrary.org/obo/PCL_0051447', 'http://purl.obolibrary.org/obo/PCL_0051448', 'http://purl.obolibrary.org/obo/PCL_0051449', 'http://purl.obolibrary.org/obo/PCL_0051450', 'http://purl.obolibrary.org/obo/PCL_0051451', 'http://purl.obolibrary.org/obo/PCL_0051452', 'http://purl.obolibrary.org/obo/PCL_0051453', 'http://purl.obolibrary.org/obo/PCL_0051454', 'http://purl.obolibrary.org/obo/PCL_0051455', 'http://purl.obolibrary.org/obo/PCL_0051456', 'http://purl.obolibrary.org/obo/PCL_0051457', 'http://purl.obolibrary.org/obo/PCL_0051458', 'http://purl.obolibrary.org/obo/PCL_0051459', 'http://purl.obolibrary.org/obo/PCL_0051460', 'http://purl.obolibrary.org/obo/PCL_0051461'], 'synonymLabels': [], 'label': 'thalamic excitatory neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023072', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0015125', 'http://purl.obolibrary.org/obo/PCL_0051022', 'http://purl.obolibrary.org/obo/PCL_0051023', 'http://purl.obolibrary.org/obo/PCL_0051024', 'http://purl.obolibrary.org/obo/PCL_0051019', 'http://purl.obolibrary.org/obo/PCL_0051015', 'http://purl.obolibrary.org/obo/PCL_0051016', 'http://purl.obolibrary.org/obo/PCL_0051014', 'http://purl.obolibrary.org/obo/PCL_0051018', 'http://purl.obolibrary.org/obo/PCL_0051017', 'http://purl.obolibrary.org/obo/PCL_0015126', 'http://purl.obolibrary.org/obo/PCL_0051020', 'http://purl.obolibrary.org/obo/PCL_0051021'], 'synonymLabels': [], 'label': 'brain vascular cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023074', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051324', 'http://purl.obolibrary.org/obo/PCL_0051325', 'http://purl.obolibrary.org/obo/PCL_0051326', 'http://purl.obolibrary.org/obo/PCL_0051327', 'http://purl.obolibrary.org/obo/PCL_0051328', 'http://purl.obolibrary.org/obo/PCL_0051329', 'http://purl.obolibrary.org/obo/PCL_0051330', 'http://purl.obolibrary.org/obo/PCL_0051331', 'http://purl.obolibrary.org/obo/PCL_0051332', 'http://purl.obolibrary.org/obo/PCL_0051333', 'http://purl.obolibrary.org/obo/PCL_0051334'], 'synonymLabels': [], 'label': 'mammillary body neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023079', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': ['http://purl.obolibrary.org/obo/PCL_0051434', 'http://purl.obolibrary.org/obo/PCL_0051435', 'http://purl.obolibrary.org/obo/PCL_0051436', 'http://purl.obolibrary.org/obo/PCL_0051437', 'http://purl.obolibrary.org/obo/PCL_0051438', 'http://purl.obolibrary.org/obo/PCL_0051439', 'http://purl.obolibrary.org/obo/PCL_0051440', 'http://purl.obolibrary.org/obo/PCL_0051441', 'http://purl.obolibrary.org/obo/PCL_0051442', 'http://purl.obolibrary.org/obo/PCL_0051443', 'http://purl.obolibrary.org/obo/PCL_0051444', 'http://purl.obolibrary.org/obo/PCL_0051445'], 'synonymLabels': [], 'label': 'midbrain-derived inhibitory neuron'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023188', 'parent': 'http://purl.obolibrary.org/obo/CL_0000740', 'children': [], 'synonymLabels': ['midget ganglion cell of retina'], 'label': 'midget cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4023189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4023189', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4023189', 'parent': 'http://purl.obolibrary.org/obo/CL_0000740', 'children': [], 'synonymLabels': ['parasol ganglion cell of retina'], 'label': 'parasol cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4028002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4028002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4028002', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['alveolar capillary type 1 endothelial cell'], 'label': 'cap1 general capillary gcap'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4028003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4028003', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4028003', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['alveolar capillary type 2 endothelial cell'], 'label': 'cap2 aerocyte capillary acap'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4028004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4028004', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4028004', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'alveolar type 1 fibroblast cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4028006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4028006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4028006', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['alveolar type 2 fibroblast cell'], 'label': 'adventitial fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030006', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['uterine tube secretory epithelial cell'], 'label': 'fallopian tube secretory epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030007', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030007', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['uterine tube ciliated epithelial cell'], 'label': 'fallopian tube ciliated cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030009', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of proximal tubule segment 1', 'epithelial cell of segment 1 of proximal tubule'], 'label': 'proximal tubule epithelial cell segment 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030010', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of proximal tubule segment 2', 'epithelial cell of segment 2 of proximal tubule'], 'label': 'proximal tubule epithelial cell segment 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030011', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of proximal tubule segment 3', 'epithelial cell of segment 3 of proximal tubule'], 'label': 'proximal tubule cell epithelial segment 3'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030012', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of the descending thin limb of the short loop of Henle', 'kidney loop of Henle short descending thin limb epithelial cell'], 'label': 'descending thin limb cell type 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030013', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle long descending thin limb outer medulla epithelial cell', 'epithelial cell of the outer medulla of the long descending limb of the loop of Henle'], 'label': 'descending thin limb cell type 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030014', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030014', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney loop of Henle long descending thin limb inner medulla epithelial cell', 'epithelial cell of the inner medulla of the long descending limb of the loop of Henle'], 'label': 'descending thin limb cell type 3'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030015', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030015', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney collecting duct alpha-intercalated cell', 'kidney collecting duct intercalated cell type A'], 'label': 'collecting duct intercalated cell type a'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030016', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of early distal convoluted tubule'], 'label': 'distal convoluted tubule cell type 1'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030017', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['epithelial cell of late distal convoluted tubule'], 'label': 'distal convoluted tubule cell type 2'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030018', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney connecting tubule principal cell'], 'label': 'connecting tubule principal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030019', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney connecting tubule intercalated cell'], 'label': 'connecting tubule intercalated cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030020': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030020', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030020', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney connecting tubule alpha-intercalated cell', 'connecting tubule A-IC', 'kidney connecting tubule intercalated cell type A'], 'label': 'connecting tubule intercalated cell type a'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030021', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney connecting tubule beta-intercalated cell', 'connecting tubule B-IC', 'kidney connecting tubule intercalated cell type B'], 'label': 'intercalated cell type b'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030022', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['kidney medullary fibroblast', 'renal medullary fibroblast'], 'label': 'medullary fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030028', 'parent': 'http://purl.obolibrary.org/obo/CL_0000561', 'children': ['https://purl.org/ccf/ASCTB-TEMP_a8-bistratified-small-field-cell'], 'synonymLabels': ['amacrine cell, glycinergic'], 'label': 'glycinergic amacrine cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4030032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4030032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4030032', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['cardiac valve interstitial cell', 'valvular interstitial cell', 'VIC'], 'label': 'valve interstitial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4032000': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4032000', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4032000', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['club-like cell of the urethral epithelium', 'club cell of the urethra epithelium', 'club-like cell of the prostatic urethra epithelium', 'prostate club cell'], 'label': 'club epithelia'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033003', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033003', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'myoepithelial cell of bronchus submucosal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033005', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033005', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'serous secreting cell of bronchus submucosal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033007', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033007', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['brush cell of epithelium of lobar bronchus'], 'label': 'tuft cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033008', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033008', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'vein endothelial cell of respiratory system'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033009', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'goblet cell of epithelium of lobar bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033010', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'neuroendocrine cell of epithelium of lobar bronchus'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033014', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033014', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['peg cell', 'fallopian tube epithelial stem-like cell', 'FTE stem-like cell', 'FTESC'], 'label': 'intercalary cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033016', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['secondary-crest myofibroblast'], 'label': 'secondary crest myofibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033017', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'bronchiolar smooth muscle cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033018', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung resident megakaryocyte', 'lung-resident megakaryocyte'], 'label': 'lung megakaryocyte'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033019', 'parent': 'http://purl.obolibrary.org/obo/CL_0000749', 'children': [], 'synonymLabels': ['ON-blue cone bipolar cell'], 'label': 'blue cone bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033020': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033020', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033020', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['tracheal submucosal gland mucous cell'], 'label': 'mucus secreting cell of trachea gland'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033021', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'myoepithelial cell of trachea gland'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033022', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['bronchial gland mucous cell'], 'label': 'mucus secreting cell of bronchus submucosal gland'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033023', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'airway submucosal gland collecting duct epithelial cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033024', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033024', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'airway submucosal gland duct basal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033025': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033025', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033025', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'perichondrial fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033026', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033026', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lung perichondrial fibroblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033027', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033027', 'parent': 'http://purl.obolibrary.org/obo/CL_0000750', 'children': [], 'synonymLabels': ['diffuse bipolar 1 cell', 'Diffuse Bipolar Cell Type DB1'], 'label': 'diffuse bipolar 1 (db1)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033028', 'parent': 'http://purl.obolibrary.org/obo/CL_0000750', 'children': [], 'synonymLabels': [], 'label': 'diffuse bipolar 2 cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033029', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033029', 'parent': 'http://purl.obolibrary.org/obo/CL_0000750', 'children': [], 'synonymLabels': [], 'label': 'diffuse bipolar 3a cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033030': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033030', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033030', 'parent': 'http://purl.obolibrary.org/obo/CL_0000750', 'children': [], 'synonymLabels': [], 'label': 'diffuse bipolar 3b cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033031': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033031', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033031', 'parent': 'http://purl.obolibrary.org/obo/CL_0000749', 'children': [], 'synonymLabels': [], 'label': 'diffuse bipolar 4 cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033032', 'parent': 'http://purl.obolibrary.org/obo/CL_0000749', 'children': [], 'synonymLabels': [], 'label': 'diffuse bipolar 6 cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033033', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033033', 'parent': 'http://purl.obolibrary.org/obo/CL_0000750', 'children': [], 'synonymLabels': [], 'label': 'flat midget bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033034', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033034', 'parent': 'http://purl.obolibrary.org/obo/CL_0000749', 'children': [], 'synonymLabels': ['invaginating midget bipolar cell'], 'label': 'invaginating bipolar cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033038', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung resident memory CD4-positive, alpha-beta T cell', 'lung resident memory CD4 T cell'], 'label': 'cd4+ t cell resident memory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033039', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung resident memory CD8-positive, alpha-beta T cell'], 'label': 'cd8+ t cell resident memory'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033041', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['CCL3-positive alveolar macrophage', 'alveolar macrophage CCL3-positive'], 'label': 'alveolar macrophage ccl3+'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033042', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['metallothionein-positive alveolar macrophage', 'alveolar macrophage metallothionein-positive', 'alveolar macrophage MT-positive'], 'label': 'alveolar macrophage mt-positive'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033043': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033043', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033043', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung interstitial macrophage'], 'label': 'interstitial macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033044': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033044', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033044', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['deuterosomal cell'], 'label': 'airway deuterosomal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033045': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033045', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033045', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['lung migratory dendritic cell'], 'label': 'migratory dendritic cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033048', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033048', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['respiratory parabasal cell', 'respiratory suprabasal progenitor cell'], 'label': 'respiratory suprabasal cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033055': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033055', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033055', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['airway submucosal gland duct ciliated cell'], 'label': 'airway submucosal gland ciliated duct cell'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033056', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033056', 'parent': 'http://purl.obolibrary.org/obo/CL_0000312', 'children': [], 'synonymLabels': ['onychocyte'], 'label': 'keratinocyte (onychocyte)'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033062', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['interstitial extravillous trophoblast cell', 'invasive interstitial extravillous trophoblast cell'], 'label': 'interstitial extravillous trophoblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033063': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033063', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033063', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['endovascular extravillous trophoblast cell'], 'label': 'endovascular extravillous trophoblast'}),\n",
      "  'http://purl.obolibrary.org/obo/CL_4033064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/CL_4033064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/CL_4033064', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['uterine resident macrophage'], 'label': 'uterine macrophage'}),\n",
      "  'http://purl.obolibrary.org/obo/LMHA_00142': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/LMHA_00142', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/LMHA_00142', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': ['ciliated cell'], 'label': 'ciliated cell of terminal ciliated ducts of submucosal glands'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015001': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015001', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015001', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 LAMP5 PVRL2', 'Lamp5_1', 'CBLN4 (Hsap), HS3ST5 (Hsap), RELN (Hsap), TRPC3 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 LAMP5 PVRL2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 lamp5 pvrl2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015002': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015002', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015002', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 LAMP5 RAB11FIP1', 'FREM1 (Hsap), MYH11 (Hsap), ADAMTS20 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 LAMP5 RAB11FIP1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 lamp5 rab11fip1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015003': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015003', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015003', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-6 LAMP5 AARD', 'PRELID2 (Hsap), FREM1 (Hsap), FBXL7 (Hsap), KIT (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-6 LAMP5 AARD primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-6 lamp5 aard'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015004': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015004', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015004', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-6 LAMP5 NES', 'ROR2 (Hsap), KIT (Hsap), NTNG1 (Hsap), EPHA3 (Hsap), EYA4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-6 LAMP5 NES primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-6 lamp5 nes'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015005', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015005', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-6 LAMP5 CA1', 'NOS1 (Hsap), HS3ST4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-6 LAMP5 CA1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-6 lamp5 ca1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015006', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L5-6 LAMP5 CRABP1', 'LOC105379168 (Hsap), PDGFD (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 LAMP5 CRABP1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 lamp5 crabp1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015007', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015007', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L3-6 PAX6 LINC01497', 'PALMD (Hsap), RELN (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-6 PAX6 LINC01497 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-6 pax6 linc01497'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015008', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015008', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 PAX6 MIR101-1', 'RELN (Hsap), TGFBR2 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 PAX6 MIR101-1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 pax6 mir101-1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015009', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 PAX6 CHRFAM7A', 'LINC01539 (Hsap), CHRNA7 (Hsap), CNR1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 PAX6 CHRFAM7A primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 pax6 chrfam7a'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015010', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-6 VIP SLC7A6OS', 'CNR1 (Hsap), PBX3 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-6 VIP SLC7A6OS primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-6 vip slc7a6os'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015011', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L2 PAX6 FREM2', 'Sncg_2', 'CILP2 (Hsap), IGFBP7 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2 PAX6 FREM2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2 pax6 frem2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015012', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-2 VIP HTR3A', 'LOC105373642 (Hsap), HTR3A (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 VIP HTR3A primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 vip htr3a'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015013', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-2 VIP WNT4', 'LOC105379064 (Hsap), SYT9 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 VIP WNT4 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 vip wnt4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015014', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015014', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 LAMP5 BMP2', 'COL5A2 (Hsap), FREM1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 LAMP5 BMP2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 lamp5 bmp2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015015', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015015', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 LAMP5 NMBR', 'PCDH18 (Hsap), RELN (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 LAMP5 NMBR primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 lamp5 nmbr'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015016', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 PVALB-like SST ASIC4', 'PRELID2 (Hsap), NCKAP5 (Hsap), ADAM33 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 PVALB-like SST ASIC4 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 pvalb sst asic4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015017', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 SST P4HA3', 'ARHGAP42 (Hsap), FOXO1 (Hsap), ST8SIA6 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 SST P4HA3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 sst p4ha3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015018', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 SST DEFB108B', 'SYT10 (Hsap), NDST4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 SST DEFB108B primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 sst defb108b'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015019', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-3 VIP CBLN1', 'LOC284825 (Hsap), HTR2C (Hsap), TAC3 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-3 VIP CBLN1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-3 vip cbln1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015020': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015020', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015020', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-2 VIP EXPH5', 'SCTR (Hsap), ST18 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 VIP EXPH5 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 vip exph5'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015021', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-3 VIP HSPB6', 'IGFBP5 (Hsap), CCNG2 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-3 VIP HSPB6 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-3 vip hspb6'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015022', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-2 VIP PTGER3', 'PARD3B (Hsap), KCNH8 (Hsap), SYT10 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 VIP PTGER3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 vip ptger3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015023', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-2 VIP SCML4', 'LOC100506497 (Hsap), KCNH8 (Hsap), ABI3BP (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 VIP SCML4 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 vip scml4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015024', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015024', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-3 VIP FNDC1', 'LOC101927286 (Hsap), LOC101928842 (Hsap), KCNH8 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-3 VIP FNDC1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-3 vip fndc1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015025': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015025', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015025', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-3 VIP CHRNA2', 'LOC105373642 (Hsap), PPP1R1C (Hsap), EYA4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-3 VIP CHRNA2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-3 vip chrna2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015026', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015026', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L2 VIP SLC6A16', 'LOC105370456 (Hsap), KCNT2 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2 VIP SLC6A16 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2 vip slc6a16'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015027', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015027', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1 VIP KLHDC8B', 'SLITRK4 (Hsap), ITGBL1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1 VIP KLHDC8B primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1 vip klhdc8b'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015028', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L3-5 VIP IGDCC3', 'EREG (Hsap), NOX4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 VIP IGDCC3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 vip igdcc3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015029', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015029', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-5 VIP SMOC1', 'ANGPT1 (Hsap), SMOC1 (Hsap), VIP (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-5 VIP SMOC1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-5 vip smoc1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015030': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015030', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015030', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L3-5 VIP HS3ST3A1', 'IQGAP2 (Hsap), ABI3BP (Hsap), SLC22A3 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 VIP HS3ST3A1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 vip hs3st3a1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015031': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015031', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015031', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L5-6 VIP COL4A3', 'KCTD12 (Hsap), PARD3B (Hsap), ABI3BP (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 VIP COL4A3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 vip col4a3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015032', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-5 VIP CD27-AS1', 'IQGAP2 (Hsap), ANKFN1 (Hsap), EGFEM1P (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-5 VIP CD27-AS1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-5 vip cd27-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015033', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015033', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L2-5 VIP BSPRY', 'LOC101927078 (Hsap), PDE3A (Hsap), ST18 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2-5 VIP BSPRY primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2-5 vip bspry'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015034', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015034', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L2-5 VIP SOX11', 'HTR2C (Hsap), THSD7B (Hsap), ADAMTSL1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2-5 VIP SOX11 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2-5 vip sox11'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015035': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015035', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015035', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L3-6 VIP ZIM2-AS1', 'PENK (Hsap), CXCL14 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-6 VIP ZIM2-AS1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-6 vip zim2-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015036', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-5 VIP PHLDB3', 'EGF (Hsap), THSD7B (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-5 VIP PHLDB3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-5 vip phldb3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015037': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015037', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015037', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L1-5 VIP LINC01013', 'DACH2 (Hsap), SRGAP1 (Hsap), THSD7B (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-5 VIP LINC01013 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-5 vip linc01013'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015038', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L3-6 VIP UG0898H09', 'LINC01411 (Hsap), LOC105373454 (Hsap), GALNT10 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-6 VIP UG0898H09 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-6 vip ug0898h09'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015039', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['Inh L3-5 VIP TAC3', 'TSHZ2 (Hsap), COL19A1 (Hsap), SOX2-OT (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 VIP TAC3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 vip tac3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015040', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L1-6 SST NPY', 'Sst Chodl', 'NPY (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-6 SST NPY primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-6 sst npy (sst chodl)'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015041', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L3-5 SST CDH3', 'FREM1 (Hsap), NPNT (Hsap), QRFPR (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 SST CDH3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 sst cdh3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015042', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5 SST RPL35AP11', 'FREM1 (Hsap), EDNRA (Hsap), TRHDE (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5 SST RPL35AP11 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5 sst rpl35ap11'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015043': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015043', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015043', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST ISX', 'COL19A1 (Hsap), TRPM3 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST ISX primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst isx'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015044': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015044', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015044', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 PVALB SST CRHR2', 'SPON1 (Hsap), HPGD (Hsap), RGS5 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 PVALB SST CRHR2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 pvalb sst crhr2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015045': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015045', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015045', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L3-5 SST OR5AH1P', 'ADAMTS5 (Hsap), FBXL7 (Hsap), SST (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 SST OR5AH1P primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 sst or5ah1p'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015046': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015046', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015046', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L3-5 SST GGTLC3', 'EYS (Hsap), RELN (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 SST GGTLC3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 sst ggtlc3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015047': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015047', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015047', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L2-3 SST NMU', 'NOS1 (Hsap), HPSE2 (Hsap), PIEZO2 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2-3 SST NMU primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2-3 sst nmu'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015048', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015048', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST PAWR', 'TRHDE (Hsap), EPB41L4A (Hsap), NDST4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST PAWR primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst pawr'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015049', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015049', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST PIK3CD', 'LOC100996671 (Hsap), KLHL14 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST PIK3CD primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst pik3cd'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015050', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015050', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L1-2 SST CCNJL', 'CALB1 (Hsap), SPHKAP (Hsap), TMEM132C (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 SST CCNJL primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 sst ccnjl'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015051', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015051', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L1-3 SST FAM20A', 'PCSK5 (Hsap), TAC1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-3 SST FAM20A primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-3 sst fam20a'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015052': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015052', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015052', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L1-2 SST PRRT4', 'LOC101927843 (Hsap), LOC101929028 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 SST PRRT4 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 sst prrt4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015053': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015053', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015053', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST BEAN1', 'TRHDE (Hsap), THSD7B (Hsap), SEMA5A (Hsap), ADAMTSL1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST BEAN1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst bean1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015054', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015054', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST DNAJC14', 'HGF (Hsap), ITGA1 (Hsap), STON2 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST DNAJC14 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst dnajc14'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015055': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015055', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015055', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST C4orf26', 'SPON1 (Hsap), PENK (Hsap), ADAMTS20 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST C4orf26 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst c4orf26'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015056', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015056', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST FBN2', 'HCRTR2 (Hsap), KLHL1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST FBN2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst fbn2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015057': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015057', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015057', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 SST KLHL1', 'SLC17A8 (Hsap), KLHL14 (Hsap), NDST4 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 SST KLHL1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 sst klhl1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015058', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015058', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L6 SST TH', 'Sst_7', 'LOC100128108 (Hsap), TH (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L6 SST TH primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l6 sst th'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015059', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 PVALB KCNIP2', 'VAV3 (Hsap), NPFFR2 (Hsap), GPC5 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 PVALB KCNIP2 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 pvalb kcnip2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015060': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015060', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015060', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 PVALB ZFPM2-AS1', 'ZFPM2-AS1 (Hsap), PCDH15 (Hsap), SEMA6D (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 PVALB ZFPM2-AS1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 pvalb zfpm2-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015061': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015061', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015061', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L3-5 PVALB ISG20', 'LOC101926942 (Hsap), LOC105377862 (Hsap), SV2C (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3-5 PVALB ISG20 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3-5 pvalb isg20'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015062', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5 PVALB LRIG3', 'CDH6 (Hsap), GPC5 (Hsap), PLCE1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5 PVALB LRIG3 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5 pvalb lrig3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015063': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015063', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015063', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L2-5 PVALB HHIPL1', 'ADAMTS17 (Hsap), MDFIC (Hsap), ADAMTS20 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2-5 PVALB HHIPL1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2-5 pvalb hhipl1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015064', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L2-5 PVALB RPH3AL', 'POSTN (Hsap), WIF1 (Hsap), ARHGAP42 (Hsap), MYO5B (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2-5 PVALB RPH3AL primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2-5 pvalb rph3al'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015065', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015065', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L3 PVALB SAMD13', 'LOC101928964 (Hsap), SULF1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L3 PVALB SAMD13 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l3 pvalb samd13'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015066', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015066', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L1-2 PVALB CDK20', 'SYT10 (Hsap), ADAMTS12 (Hsap), TMEM132C (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 PVALB CDK20 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 pvalb cdk20'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015067', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L2 PVALB FRZB', 'CBLN4 (Hsap), SLC9A9 (Hsap), RGS5 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L2 PVALB FRZB primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l2 pvalb frzb'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015068', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015068', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L1-2 SST CLIC6', 'ARHGAP42 (Hsap), NEDD4 (Hsap), TAC1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-2 SST CLIC6 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-2 sst clic6'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015069', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015069', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 PVALB GAPDHP60', 'SEMA3C (Hsap), GPC5 (Hsap), MYBPC1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 PVALB GAPDHP60 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 pvalb gapdhp60'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015070', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015070', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 PVALB FAM150B', 'FAM150B (Hsap), TNC (Hsap), MYBPC1 (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 PVALB FAM150B primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 pvalb fam150b'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015071', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Inh L5-6 PVALB MEPE', 'MYBPC1 (Hsap), MEPE (Hsap), SVIL (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L5-6 PVALB MEPE primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l5-6 pvalb mepe'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015072', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['Chandelier', 'Chandelier cell', 'Inh L1-6 PVALB COL15A1', 'COL15A1 (Hsap), NPNT (Hsap) expressing GABAergic interneuron of primary motor cortex (Homo sapiens)', 'Inh L1-6 PVALB COL15A1 primary motor cortex GABAergic interneuron (Hsap)'], 'label': 'inh l1-6 pvalb col15a1 (chandelier)'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015073': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015073', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015073', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2 LAMP5 KCNG3', 'LOC101927668 (Hsap), FAM163A (Hsap), SAMD3 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2 LAMP5 KCNG3 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2 lamp5 kcng3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015074', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2 LINC00507 ATP7B', 'LOC105377209 (Hsap), ACVR1C (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2 LINC00507 ATP7B primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2 linc00507 atp7b'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015075', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015075', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2 LINC00507 GLRA3', 'LOC101928278 (Hsap), LINC01378 (Hsap), SERPINE2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2 LINC00507 GLRA3 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2 linc00507 glra3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015076': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015076', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015076', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2-3 RORB RTKN2', 'LOC101927745 (Hsap), LOC105376987 (Hsap), RMST (Hsap), PLCH1 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2-3 RORB RTKN2 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2-3 rorb rtkn2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015077': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015077', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015077', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2-3 LINC00507 DSG3', 'LOC105379003 (Hsap), BDNF (Hsap), BMPR1B (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2-3 LINC00507 DSG3 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2-3 linc00507 dsg3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015078': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015078', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015078', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3 LAMP5 CARM1P1', 'SYT2 (Hsap), SV2C (Hsap), EPB41L4A (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3 LAMP5 CARM1P1 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3 lamp5 carm1p1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015079', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo L2-6 OPALIN MAP6D1', 'LINC01378 (Hsap), MBP (Hsap), ENPP2 (Hsap), ST18 (Hsap) expressing oligodendrocyte precursor cell of primary motor cortex (Homo sapiens)', 'Oligo L2-6 OPALIN MAP6D1 primary motor cortex oligodendrocyte precursor cell (Hsap)'], 'label': 'oligo l2-6 opalin map6d1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015080', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015080', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2-3 RORB CCDC68', 'COL5A2 (Hsap), COBLL1 (Hsap), PRSS12 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2-3 RORB CCDC68 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2-3 rorb ccdc68'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015081': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015081', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015081', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L2-3 RORB PTPN3', 'LOC105370610 (Hsap), LOC105378334 (Hsap), COL5A2 (Hsap), RORB (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L2-3 RORB PTPN3 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l2-3 rorb ptpn3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015082': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015082', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015082', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3 THEMIS ENPEP', 'LOC101928964 (Hsap), LOC105376081 (Hsap), FAP (Hsap), LAMA2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3 THEMIS ENPEP primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3 themis enpep'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015083': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015083', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015083', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3-5 RORB TNNT2', 'LOC100507562 (Hsap), LOC105376081 (Hsap), FSHR (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3-5 RORB TNNT2 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3-5 rorb tnnt2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015084': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015084', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015084', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3-5 RORB LAMA4', 'TRPC3 (Hsap), LOC100128497 (Hsap), LOC101927281 (Hsap), LOC105376081 (Hsap), KCNH8 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3-5 RORB LAMA4 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3-5 rorb lama4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015085': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015085', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015085', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L5 THEMIS VILL', 'LOC101927389 (Hsap), DACH1 (Hsap), TNC (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L5 THEMIS VILL primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l5 themis vill'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015086': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015086', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015086', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3 RORB OTOGL', 'COL22A1 (Hsap), RMST (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3 RORB OTOGL primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3 rorb otogl'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015087': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015087', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015087', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3-5 RORB LINC01202', 'LOC101927874 (Hsap), LOC105374971 (Hsap), LOC105376081 (Hsap), LOC105377703 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3-5 RORB LINC01202 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3-5 rorb linc01202'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015088', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015088', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L5 THEMIS SLC22A18', 'CCBE1 (Hsap), BTNL9 (Hsap), SLC7A11 (Hsap), LOC401134 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L5 THEMIS SLC22A18 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l5 themis slc22a18'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015089': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015089', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015089', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L5-6 THEMIS TNFAIP6', 'LOC105373893 (Hsap), LOC105378031 (Hsap), TSHZ2 (Hsap), LTBP1 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L5-6 THEMIS TNFAIP6 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l5-6 themis tnfaip6'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015090': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015090', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015090', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3-5 RORB LNX2', 'LOC105374971 (Hsap), LOC105377703 (Hsap), TRABD2A (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3-5 RORB LNX2 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3-5 rorb lnx2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015091', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L3-5 RORB RPRM', 'LOC105374971 (Hsap), LOC105374973 (Hsap), RPRM (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L3-5 RORB RPRM primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l3-5 rorb rprm'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015092': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015092', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015092', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L5 RORB MED8', 'NPFFR2 (Hsap), COL22A1 (Hsap), LOC401134 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L5 RORB MED8 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l5 rorb med8'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015093': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015093', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015093', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L5 THEMIS FGF10', 'NPFFR2 (Hsap), CRH (Hsap), BDNF (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L5 THEMIS FGF10 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l5 themis fgf10'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015094', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015094', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L6 THEMIS LINC00343', 'LINC00343 (Hsap), LINC00299 (Hsap), ANKRD30B (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)', 'Exc L6 THEMIS LINC00343 primary motor cortex glutamatergic neuron (Hsap)'], 'label': 'exc l6 themis linc00343'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015095', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015095', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L6 THEMIS SLN primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 THEMIS SLN', 'LOC105371832 (Hsap), LOC105374524 (Hsap), FAM163A (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 themis sln'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015096', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L6 THEMIS SNTG2 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 THEMIS SNTG2', 'LOC101927389 (Hsap), LOC105371310 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 themis sntg2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015097', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015097', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['Exc L5-6 THEMIS SMYD1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 THEMIS SMYD1', 'L6 IT Car3', 'L6 IT_3', 'ATP10A (Hsap), TRPC5 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 themis smyd1 (l6 it car3)'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015098': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015098', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015098', 'parent': 'http://purl.obolibrary.org/obo/CL_4023013', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 OR1L8 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 OR1L8', 'LOC101927439 (Hsap), LOC105374392 (Hsap), LOC105377183 (Hsap), LGR6 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 or1l8'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015099': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015099', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015099', 'parent': 'http://purl.obolibrary.org/obo/CL_4023013', 'children': [], 'synonymLabels': ['Exc L5 THEMIS LINC01116 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5 THEMIS LINC01116', 'LOC105369890 (Hsap), LOC105371663 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5 themis linc01116'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015100', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015100', 'parent': 'http://purl.obolibrary.org/obo/CL_4023013', 'children': [], 'synonymLabels': ['Exc L5 THEMIS RGPD6 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5 THEMIS RGPD6', 'LOC105371663 (Hsap), THEMIS (Hsap), DDR2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5 themis rgpd6'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015101': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015101', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015101', 'parent': 'http://purl.obolibrary.org/obo/CL_4023013', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 C9orf135-AS1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 C9orf135-AS1', 'L6 CT_2', 'SEMA5A (Hsap), EGFEM1P (Hsap), FOXP2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 c9orf135-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015102': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015102', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015102', 'parent': 'http://purl.obolibrary.org/obo/CL_4023013', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 FILIP1L primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 FILIP1L', 'LOC100128497 (Hsap), SULF1 (Hsap), MCTP2 (Hsap), SEC16B (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 filip1l'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015103': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015103', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015103', 'parent': 'http://purl.obolibrary.org/obo/CL_4023013', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 SH2D1B primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 SH2D1B', 'NLGN4Y (Hsap), MEIS2 (Hsap), PAPSS2 (Hsap), ADAMTSL1 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 sh2d1b'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015104': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015104', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015104', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['Exc L6 FEZF2 PDYN primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 FEZF2 PDYN', 'GBP2 (Hsap), PDYN (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 fezf2 pdyn'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015105': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015105', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015105', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['Exc L6 FEZF2 FFAR4 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 FEZF2 FFAR4', 'LOC105378486 (Hsap), FER1L6-AS2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 fezf2 ffar4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015106', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015106', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['Exc L6 FEZF2 PROKR2 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 FEZF2 PROKR2', 'LOC105371310 (Hsap), SLITRK6 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 fezf2 prokr2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015107', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 CFTR primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 CFTR', 'LOC105374392 (Hsap), SEMA3D (Hsap), NR4A2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 cftr'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015108', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015108', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['Exc L6 FEZF2 KLK7 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 FEZF2 KLK7', 'LOC101927439 (Hsap), MDFIC (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 fezf2 klk7'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015109': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015109', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015109', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['Exc L6 FEZF2 POGK primary motor cortex glutamatergic neuron (Hsap)', 'Exc L6 FEZF2 POGK', 'LOC100132891 (Hsap), ADD3-AS1 (Hsap), PCOLCE2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l6 fezf2 pogk'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015110': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015110', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015110', 'parent': 'http://purl.obolibrary.org/obo/CL_4023009', 'children': [], 'synonymLabels': ['Exc L5 FEZF2 CSN1S1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5 FEZF2 CSN1S1', 'LOC105373592 (Hsap), VAT1L (Hsap), OPN4 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5 fezf2 csn1s1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015111': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015111', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015111', 'parent': 'http://purl.obolibrary.org/obo/CL_4023009', 'children': [], 'synonymLabels': ['Exc L3-5 FEZF2 ASGR2 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L3-5 FEZF2 ASGR2', 'LOC105376457 (Hsap), OR51E2 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l3-5 fezf2 asgr2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015112': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015112', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015112', 'parent': 'http://purl.obolibrary.org/obo/CL_4023009', 'children': [], 'synonymLabels': ['Exc L3-5 FEZF2 LINC01107 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L3-5 FEZF2 LINC01107', 'L5 ET_2', 'BTNL9 (Hsap), EDNRB (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l3-5 fezf2 linc01107'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015113': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015113', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015113', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['Exc L5 FEZF2 PKD2L1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5 FEZF2 PKD2L1', 'VGLL3 (Hsap), NPSR1-AS1 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5 fezf2 pkd2l1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015114', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015114', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['Exc L5 FEZF2 NREP-AS1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5 FEZF2 NREP-AS1', 'LOC105370315 (Hsap), ADAMTS12 (Hsap), CD36 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5 fezf2 nrep-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015115': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015115', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015115', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['Exc L5 FEZF2 RNF144A-AS1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5 FEZF2 RNF144A-AS1', 'LOC105369818 (Hsap), LOC105370019 (Hsap), CD36 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5 fezf2 rnf144a-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015116': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015116', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015116', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 IFNG-AS1 primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 IFNG-AS1', 'LOC105369818 (Hsap), NPSR1-AS1 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 ifng-as1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015117': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015117', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015117', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['Exc L5-6 FEZF2 LPO primary motor cortex glutamatergic neuron (Hsap)', 'Exc L5-6 FEZF2 LPO', 'LOC101928114 (Hsap), LOC105376372 (Hsap) expressing glutamatergic neuron of primary motor cortex (Homo sapiens)'], 'label': 'exc l5-6 fezf2 lpo'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015118': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015118', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015118', 'parent': 'http://purl.obolibrary.org/obo/CL_0002453', 'children': [], 'synonymLabels': ['OPC L1-6 PDGFRA COL20A1 primary motor cortex oligodendrocyte precursor cell (Hsap)', 'OPC', 'OPC L1-6 PDGFRA COL20A1', 'VCAN (Hsap), STK32A (Hsap) expressing oligodendrocyte precursor cell of primary motor cortex (Homo sapiens)'], 'label': 'opc l1-6 pdgfra col20a1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015119': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015119', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015119', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo L3-6 OPALIN-like ENPP6 primary motor cortex oligodendrocyte precursor cell (Hsap)', 'Oligo L3-6 OPALIN-like ENPP6', 'Oligo_1', 'LOC101927199 (Hsap), ST18 (Hsap), LRRC63 (Hsap), S100B (Hsap), CDK18 (Hsap) expressing oligodendrocyte precursor cell of primary motor cortex (Homo sapiens)'], 'label': 'oligo l3-6 opalin enpp6'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015120': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015120', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015120', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo L2-6 OPALIN FTH1P3 primary motor cortex oligodendrocyte precursor cell (Hsap)', 'Oligo L2-6 OPALIN FTH1P3', 'LOC101927459 (Hsap), ENPP2 (Hsap) expressing oligodendrocyte precursor cell of primary motor cortex (Homo sapiens)'], 'label': 'oligo l2-6 opalin fth1p3'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015121': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015121', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015121', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo L5-6 OPALIN LDLRAP1 primary motor cortex oligodendrocyte (Hsap)', 'Oligo L5-6 OPALIN LDLRAP1', 'KIF25 (Hsap), TGFA (Hsap), FAM222A (Hsap) expressing oligodendrocyte of primary motor cortex (Homo sapiens)'], 'label': 'oligo l5-6 opalin ldlrap1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015122': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015122', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015122', 'parent': 'http://purl.obolibrary.org/obo/CL_0002605', 'children': [], 'synonymLabels': ['Astro L1-6 FGFR3 AQP1 primary motor cortex astrocyte (Hsap)', 'Astro L1-6 FGFR3 AQP1', 'TNC (Hsap) expressing astrocyte of primary motor cortex (Homo sapiens)'], 'label': 'astro l1-6 fgfr3 aqp1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015123': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015123', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015123', 'parent': 'http://purl.obolibrary.org/obo/CL_0002605', 'children': [], 'synonymLabels': ['Astro L1 FGFR3 SERPINI2 primary motor cortex astrocyte (Hsap)', 'Astro L1 FGFR3 SERPINI2', 'WDR49 (Hsap), CFAP47 (Hsap) expressing astrocyte of primary motor cortex (Homo sapiens)'], 'label': 'astro l1 fgfr3 serpini2'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015124': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015124', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015124', 'parent': 'http://purl.obolibrary.org/obo/CL_0002605', 'children': [], 'synonymLabels': ['Astro L1-6 FGFR3 PLCG1 primary motor cortex astrocyte (Hsap)', 'Astro L1-6 FGFR3 PLCG1', 'Astro_2', 'LOC105376917 (Hsap), COL5A3 (Hsap) expressing astrocyte of primary motor cortex (Homo sapiens)'], 'label': 'astro l1-6 fgfr3 plcg1'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015125', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015125', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['Endo L2-5 NOSTRIN SRGN primary motor cortex endothelial cell (Hsap)', 'Endo', 'Endo L2-5 NOSTRIN SRGN', 'Endothelial', 'CLDN5 (Hsap) expressing endothelial cell of primary motor cortex (Homo sapiens)'], 'label': 'endo l2-5 nostrin srgn'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015126': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015126', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015126', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VLMC L1-5 PDGFRA COLEC12 primary motor cortex vascular leptomeningeal cell (Hsap)', 'VLMC', 'VLMC L1-5 PDGFRA COLEC12', 'COL1A2 (Hsap), COLEC12 (Hsap) expressing vascular leptomeningeal cell of primary motor cortex (Homo sapiens)'], 'label': 'vlmc l1-5 pdgfra colec12'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0015127': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0015127', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0015127', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Micro L1-6 TYROBP CD74 primary motor cortex microglial cell (Hsap)', 'Micro L1-6 TYROBP CD74', 'Microglia-PVM', 'Microglia/PVM', 'APBB1IP (Hsap), P2RY12 (Hsap) expressing microglial cell of primary motor cortex (Homo sapiens)'], 'label': 'micro l1-6 tyrobp cd74'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051005': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051005', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051005', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_4 microglial cell (Hsap)', 'Mgl_4', 'SRGN (Hsap), HIF1A-AS3 (Hsap) expressing microglial cell of brain (Homo sapiens)'], 'label': 'mgl_4'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051006': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051006', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051006', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_5 microglial cell (Hsap)', 'APBB1IP (Hsap), TTR (Hsap) expressing microglial cell of brain (Homo sapiens)', 'Mgl_5'], 'label': 'mgl_5'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051007': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051007', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051007', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_6 microglial cell (Hsap)', 'Mgl_6', 'SCIN (Hsap), ITGAX (Hsap), LINC00278 (Hsap) expressing microglial cell of brain (Homo sapiens)'], 'label': 'mgl_6'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051008': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051008', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051008', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_7 microglial cell (Hsap)', 'CX3CR1 (Hsap), OLR1 (Hsap), LINC02712 (Hsap) expressing microglial cell of brain (Homo sapiens)', 'Mgl_7'], 'label': 'mgl_7'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051009': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051009', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051009', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_8 microglial cell (Hsap)', 'CX3CR1 (Hsap), CCDC26 (Hsap), LNCAROD (Hsap) expressing microglial cell of brain (Homo sapiens)', 'Mgl_8'], 'label': 'mgl_8'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051010': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051010', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051010', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_9 microglial cell (Hsap)', 'CX3CR1 (Hsap), AIF1 (Hsap), LINC02712 (Hsap) expressing microglial cell of brain (Homo sapiens)', 'Mgl_9'], 'label': 'mgl_9'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051011': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051011', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051011', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_10 microglial cell (Hsap)', 'DOCK8 (Hsap), P2RY12 (Hsap), LNCAROD (Hsap) expressing microglial cell of brain (Homo sapiens)', 'Mgl_10'], 'label': 'mgl_10'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051012': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051012', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051012', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_11 microglial cell (Hsap)', 'Mgl_11', 'P2RY12 (Hsap), LINC02642 (Hsap), LINC02712 (Hsap) expressing microglial cell of brain (Homo sapiens)'], 'label': 'mgl_11'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051013': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051013', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051013', 'parent': 'http://purl.obolibrary.org/obo/CL_0000129', 'children': [], 'synonymLabels': ['Mgl_12 microglial cell (Hsap)', 'F13A1 (Hsap), MRC1 (Hsap) expressing microglial cell of brain (Homo sapiens)', 'Mgl_12'], 'label': 'mgl_12'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051014': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051014', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051014', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VendPLVAP_13 brain vascular cell (Hsap)', 'PLVAP (Hsap) expressing brain vascular cell of brain (Homo sapiens)', 'VendPLVAP_13'], 'label': 'vendplvap_13'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051015': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051015', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051015', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VendAC_14 brain vascular cell (Hsap)', 'SEMA3G (Hsap), HERC2P3 (Hsap) expressing brain vascular cell of brain (Homo sapiens)', 'VendAC_14'], 'label': 'vendac_14'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051016': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051016', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051016', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VendC_15 capillary endothelial cell (Hsap)', 'MECOM (Hsap), ABCG2 (Hsap), HMCN1 (Hsap) expressing capillary endothelial cell of brain (Homo sapiens)', 'VendC_15'], 'label': 'vendc_15'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051017': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051017', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051017', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VendVC_16 capillary endothelial cell (Hsap)', 'MECOM (Hsap), TRPM6 (Hsap) expressing capillary endothelial cell of brain (Homo sapiens)', 'VendVC_16'], 'label': 'vendvc_16'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051018': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051018', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051018', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VendV_17 vein endothelial cell (Hsap)', 'IL1R1 (Hsap), SRGN (Hsap) expressing vein endothelial cell of brain (Homo sapiens)', 'VendV_17'], 'label': 'vendv_17'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051019': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051019', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051019', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['VendA_18 endothelial cell of artery (Hsap)', 'MECOM (Hsap), MGP (Hsap) expressing endothelial cell of artery of brain (Homo sapiens)', 'VendA_18'], 'label': 'venda_18'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051020': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051020', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051020', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['Vsmc_19 brain vascular cell (Hsap)', 'MECOM (Hsap), ACTA2 (Hsap) expressing brain vascular cell of brain (Homo sapiens)', 'Vsmc_19'], 'label': 'vsmc_19'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051021': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051021', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051021', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['Vsmc_20 smooth muscle cell of the brain vasculature (Hsap)', 'ACTA2 (Hsap), TAGLN (Hsap) expressing smooth muscle cell of the brain vasculature of brain (Homo sapiens)', 'Vsmc_20'], 'label': 'vsmc_20'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051022': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051022', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051022', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['Per_21 pericyte (Hsap)', 'Per_21', 'RERGL (Hsap), NDUFA4L2 (Hsap) expressing pericyte of brain (Homo sapiens)'], 'label': 'per_21'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051023': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051023', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051023', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['Per_22 pericyte (Hsap)', 'Per_22', 'SLC19A1 (Hsap), CARMN (Hsap) expressing pericyte of brain (Homo sapiens)'], 'label': 'per_22'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051024': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051024', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051024', 'parent': 'http://purl.obolibrary.org/obo/CL_4023072', 'children': [], 'synonymLabels': ['Per_23 brain vascular cell (Hsap)', 'Per_23', 'SLC6A13 (Hsap), ASPN (Hsap), SLC6A12 (Hsap) expressing brain vascular cell of brain (Homo sapiens)'], 'label': 'per_23'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051025': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051025', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051025', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_24 fibroblast (Hsap)', 'BMP5 (Hsap), C7 (Hsap) expressing fibroblast of brain (Homo sapiens)', 'Fbl_24'], 'label': 'fbl_24'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051026': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051026', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051026', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_25 fibroblast (Hsap)', 'Fbl_25', 'TBX18 (Hsap), LTBP2 (Hsap) expressing fibroblast of brain (Homo sapiens)'], 'label': 'fbl_25'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051027': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051027', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051027', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_26 fibroblast (Hsap)', 'Fbl_26', 'SLC6A20 (Hsap), COL15A1 (Hsap) expressing fibroblast of brain (Homo sapiens)'], 'label': 'fbl_26'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051028': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051028', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051028', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_27', 'FMO2 (Hsap), ABCA8 (Hsap), LINC02147 (Hsap) expressing fibroblast of brain (Homo sapiens)', 'Fbl_27 fibroblast (Hsap)'], 'label': 'fbl_27'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051029': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051029', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051029', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['C7 (Hsap), FBLN2 (Hsap), COL1A2 (Hsap) expressing fibroblast of brain (Homo sapiens)', 'Fbl_28', 'Fbl_28 fibroblast (Hsap)'], 'label': 'fbl_28'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051030': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051030', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051030', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_29', 'SLC2A1 (Hsap), BMPR1B (Hsap), EBF2 (Hsap) expressing fibroblast of brain (Homo sapiens)', 'Fbl_29 fibroblast (Hsap)'], 'label': 'fbl_29'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051031': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051031', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051031', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_30', 'SLC5A5 (Hsap), RP11-354K4.2 (Hsap) expressing fibroblast of brain (Homo sapiens)', 'Fbl_30 fibroblast (Hsap)'], 'label': 'fbl_30'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051032': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051032', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051032', 'parent': 'http://purl.obolibrary.org/obo/CL_0000057', 'children': [], 'synonymLabels': ['Fbl_31', 'PTGDR (Hsap), BNC2 (Hsap) expressing arachnoid barrier cell of brain (Homo sapiens)', 'Fbl_31 arachnoid barrier cell (Hsap)'], 'label': 'fbl_31'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051033': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051033', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051033', 'parent': 'http://purl.obolibrary.org/obo/CL_0002453', 'children': [], 'synonymLabels': ['MROH9 (Hsap), RP1-45C12.1 (Hsap) expressing oligodendrocyte precursor cell of brain (Homo sapiens)', 'OPC_32', 'OPC_32 oligodendrocyte precursor cell (Hsap)'], 'label': 'opc_32'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051034': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051034', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051034', 'parent': 'http://purl.obolibrary.org/obo/CL_0002453', 'children': [], 'synonymLabels': ['OLIG1 (Hsap), APOD (Hsap), RP1-45C12.1 (Hsap) expressing oligodendrocyte precursor cell of brain (Homo sapiens)', 'OPC_33', 'OPC_33 oligodendrocyte precursor cell (Hsap)'], 'label': 'opc_33'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051035': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051035', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051035', 'parent': 'http://purl.obolibrary.org/obo/CL_0002453', 'children': [], 'synonymLabels': ['OLIG1 (Hsap), RP4-668E10.4 (Hsap), RP11-197H3.1 (Hsap) expressing oligodendrocyte precursor cell of brain (Homo sapiens)', 'OPC_34', 'OPC_34 oligodendrocyte precursor cell (Hsap)'], 'label': 'opc_34'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051036': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051036', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051036', 'parent': 'http://purl.obolibrary.org/obo/CL_0002453', 'children': [], 'synonymLabels': ['OLIG1 (Hsap), MIR3681HG (Hsap), RP4-668E10.4 (Hsap) expressing oligodendrocyte precursor cell of brain (Homo sapiens)', 'OPC_35', 'OPC_35 oligodendrocyte precursor cell (Hsap)'], 'label': 'opc_35'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051037': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051037', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051037', 'parent': 'http://purl.obolibrary.org/obo/CL_0002453', 'children': [], 'synonymLabels': ['LINC01608 (Hsap), RP4-668E10.4 (Hsap) expressing oligodendrocyte precursor cell of brain (Homo sapiens)', 'OPC_36', 'OPC_36 oligodendrocyte precursor cell (Hsap)'], 'label': 'opc_36'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051038': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051038', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051038', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['BCAS1 (Hsap), PRRX1 (Hsap), GPR17 (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_37', 'COP_37 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_37'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051039': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051039', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051039', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['BCAS1 (Hsap), RP11-89N17.4 (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_38', 'COP_38 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_38'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051040': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051040', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051040', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['COP_39', 'TF (Hsap), CTD-2545M3.8 (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_39 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_39'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051041': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051041', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051041', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_40', 'PLP1 (Hsap), ERBB4 (Hsap), OPALIN (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_40 oligodendrocyte (Hsap)'], 'label': 'oligo_40'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051042': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051042', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051042', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['COP_41', 'OPALIN (Hsap), AC084149.2 (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_41 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_41'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051043': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051043', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051043', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['CNDP1 (Hsap), NTNG1 (Hsap), LINC01608 (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_42', 'COP_42 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_42'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051044': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051044', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051044', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['COP_43', 'SLC5A11 (Hsap), MOBP (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_43 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_43'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051045': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051045', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051045', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_44', 'TF (Hsap), SLC5A11 (Hsap), CARNS1 (Hsap), MOBP (Hsap), ANLN (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_44 oligodendrocyte (Hsap)'], 'label': 'oligo_44'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051046': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051046', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051046', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_45', 'SLC5A11 (Hsap), CERCAM (Hsap), MOBP (Hsap), OPALIN (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_45 oligodendrocyte (Hsap)'], 'label': 'oligo_45'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051047': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051047', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051047', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_46', 'RNASE1 (Hsap), CNDP1 (Hsap), LINC01608 (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_46 oligodendrocyte (Hsap)'], 'label': 'oligo_46'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051048': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051048', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051048', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_47', 'PLP1 (Hsap), OPALIN (Hsap), LINC01608 (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_47 oligodendrocyte (Hsap)'], 'label': 'oligo_47'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051049': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051049', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051049', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_48', 'OPALIN (Hsap), RP11-38B6.1 (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_48 oligodendrocyte (Hsap)'], 'label': 'oligo_48'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051050': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051050', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051050', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_49', 'TF (Hsap), SLC5A11 (Hsap), CRYAB (Hsap), CARNS1 (Hsap), AC084149.2 (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_49 oligodendrocyte (Hsap)'], 'label': 'oligo_49'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051051': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051051', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051051', 'parent': 'http://purl.obolibrary.org/obo/CL_0000128', 'children': [], 'synonymLabels': ['Oligo_50', 'SLC5A11 (Hsap), PTCSC3 (Hsap) expressing oligodendrocyte of brain (Homo sapiens)', 'Oligo_50 oligodendrocyte (Hsap)'], 'label': 'oligo_50'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051053': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051053', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051053', 'parent': 'http://purl.obolibrary.org/obo/CL_0002605', 'children': [], 'synonymLabels': ['Astro_52', 'COL5A3 (Hsap), LINC01727 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_52 astrocyte (Hsap)'], 'label': 'astro_52'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051054': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051054', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051054', 'parent': 'http://purl.obolibrary.org/obo/CL_0002604', 'children': [], 'synonymLabels': ['Astro_53', 'COL5A3 (Hsap), GLI3 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_53 astrocyte (Hsap)'], 'label': 'astro_53'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051055': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051055', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051055', 'parent': 'http://purl.obolibrary.org/obo/CL_0012000', 'children': [], 'synonymLabels': ['Astro_54', 'GLI3 (Hsap), ETNPPL (Hsap), OBI1-AS1 (Hsap), F11-AS1 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_54 astrocyte (Hsap)'], 'label': 'astro_54'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051056': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051056', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051056', 'parent': 'http://purl.obolibrary.org/obo/CL_0012000', 'children': [], 'synonymLabels': ['Astro_55', 'FGFR3 (Hsap), WIF1 (Hsap), HPSE2 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_55 astrocyte (Hsap)'], 'label': 'astro_55'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051057': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051057', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051057', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_56', 'TNC (Hsap), GPC5 (Hsap), OBI1-AS1 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_56 astrocyte (Hsap)'], 'label': 'astro_56'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051058': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051058', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051058', 'parent': 'http://purl.obolibrary.org/obo/CL_0012000', 'children': [], 'synonymLabels': ['Astro_57', 'FGFR3 (Hsap), TNC (Hsap), LINC00609 (Hsap), RP11-134O15.3 (Hsap), OBI1-AS1 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_57 astrocyte (Hsap)'], 'label': 'astro_57'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051059': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051059', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051059', 'parent': 'http://purl.obolibrary.org/obo/CL_0002605', 'children': [], 'synonymLabels': ['Astro_58', 'FGFR3 (Hsap), ID3 (Hsap), LINC00499 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_58 astrocyte (Hsap)'], 'label': 'astro_58'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051060': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051060', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051060', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_59', 'LGR6 (Hsap), HPSE2 (Hsap), ITPRID1 (Hsap), OBI1-AS1 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_59 astrocyte (Hsap)'], 'label': 'astro_59'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051061': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051061', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051061', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_60', 'TNC (Hsap), APOE (Hsap), EDNRB (Hsap), LINC00499 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_60 astrocyte (Hsap)'], 'label': 'astro_60'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051062': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051062', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051062', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_61', 'GFAP (Hsap), AQP1 (Hsap), RP11-259K15.2 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_61 astrocyte (Hsap)'], 'label': 'astro_61'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051063': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051063', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051063', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_62', 'TNC (Hsap), APOE (Hsap), LINC00836 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_62 astrocyte (Hsap)'], 'label': 'astro_62'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051064': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051064', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051064', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_63', 'CRYAB (Hsap), GFAP (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_63 astrocyte (Hsap)'], 'label': 'astro_63'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051065': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051065', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051065', 'parent': 'http://purl.obolibrary.org/obo/CL_0000127', 'children': [], 'synonymLabels': ['Astro_64', 'RP11-517I3.1 (Hsap), RP11-297I23.1 (Hsap) expressing astrocyte of brain (Homo sapiens)', 'Astro_64 astrocyte (Hsap)'], 'label': 'astro_64'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051066': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051066', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051066', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['Epen_65', 'TNC (Hsap), FGFR3 (Hsap), DTHD1 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_65 ependymal cell (Hsap)'], 'label': 'epen_65'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051067': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051067', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051067', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['Epen_66', 'NTS (Hsap), AC018717.1 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_66 ependymal cell (Hsap)'], 'label': 'epen_66'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051068': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051068', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051068', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['ADGRD2 (Hsap), DTHD1 (Hsap), OBI1-AS1 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_67', 'Epen_67 ependymal cell (Hsap)'], 'label': 'epen_67'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051069': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051069', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051069', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['CAPS (Hsap), OR2B4P (Hsap), CRIP1 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_68', 'Epen_68 ependymal cell (Hsap)'], 'label': 'epen_68'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051070': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051070', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051070', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['CAPS (Hsap), AC018717.1 (Hsap), RP11-624A4.2 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_69', 'Epen_69 ependymal cell (Hsap)'], 'label': 'epen_69'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051071': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051071', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051071', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['Epen_70', 'GRAMD2A (Hsap), TRDN (Hsap), OR2B4P (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_70 ependymal cell (Hsap)'], 'label': 'epen_70'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051072': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051072', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051072', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['Epen_71', 'SGMS2 (Hsap), DTHD1 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_71 ependymal cell (Hsap)'], 'label': 'epen_71'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051073': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051073', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051073', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['Epen_72', 'OR2B4P (Hsap), MGC4859 (Hsap), RP11-624A4.2 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_72 ependymal cell (Hsap)'], 'label': 'epen_72'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051074': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051074', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051074', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['AC018717.1 (Hsap), AC007682.1 (Hsap), RP11-624A4.2 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_73', 'Epen_73 ependymal cell (Hsap)'], 'label': 'epen_73'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051075': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051075', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051075', 'parent': 'http://purl.obolibrary.org/obo/CL_0000065', 'children': [], 'synonymLabels': ['Epen_74', 'TTR (Hsap), DTHD1 (Hsap) expressing ependymal cell of brain (Homo sapiens)', 'Epen_74 ependymal cell (Hsap)'], 'label': 'epen_74'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051076': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051076', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051076', 'parent': 'http://purl.obolibrary.org/obo/CL_4023059', 'children': [], 'synonymLabels': ['COP_75', 'FOLR1 (Hsap), C1QTNF5 (Hsap) expressing differentiation-committed oligodendrocyte precursor of brain (Homo sapiens)', 'COP_75 differentiation-committed oligodendrocyte precursor (Hsap)'], 'label': 'cop_75'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051077': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051077', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051077', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_76', 'PLP1 (Hsap), ST18 (Hsap), OTX2-AS1 (Hsap), RP11-690J15.1 (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_76 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_76'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051078': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051078', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051078', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_77', 'FOLR1 (Hsap), SERPINF1 (Hsap), RP11-690J15.1 (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_77 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_77'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051079': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051079', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051079', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_78', 'POU2AF1 (Hsap), CRYBG1 (Hsap), RP11-729M20.1 (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_78 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_78'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051080': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051080', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051080', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_79', 'POU2AF1 (Hsap), TRPV4 (Hsap), ABCA4 (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_79 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_79'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051081': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051081', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051081', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_80', 'HS3ST3A1 (Hsap), RP11-690J15.1 (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_80 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_80'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051082': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051082', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051082', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_81', 'HPD (Hsap), C1QTNF5 (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_81 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_81'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051083': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051083', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051083', 'parent': 'http://purl.obolibrary.org/obo/CL_0000706', 'children': [], 'synonymLabels': ['Chrp_82', 'TTR (Hsap), GPNMB (Hsap) expressing choroid plexus epithelial cell of brain (Homo sapiens)', 'Chrp_82 choroid plexus epithelial cell (Hsap)'], 'label': 'chrp_82'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051084': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051084', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051084', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_83', 'RP11-34C15.2 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_83 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_83'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051085': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051085', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051085', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_84', 'POSTN (Hsap), SLC9C1 (Hsap), NPSR1-AS1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_84 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_84'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051086': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051086', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051086', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_85', 'TACR3 (Hsap), SGO1-AS1 (Hsap), FER1L6-AS2 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_85 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_85'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051087': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051087', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051087', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['ADRA1A (Hsap), PLPP3 (Hsap), PTPRT (Hsap), IFNG-AS1 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_86', 'DLNP_86 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_86'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051088': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051088', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051088', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['COL9A1 (Hsap), SLC9C1 (Hsap), NPSR1 (Hsap), RP11-421N8.3 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_87', 'DLNP_87 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_87'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051089': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051089', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051089', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['CD36 (Hsap), NPSR1 (Hsap), IFNG-AS1 (Hsap), RP11-421N8.3 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_88', 'DLNP_88 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_88'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051090': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051090', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051090', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_89', 'NPSR1-AS1 (Hsap), AE000661.37 (Hsap), RP11-66G15.1 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_89 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_89'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051091': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051091', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051091', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['CTB-57H20.1 (Hsap), AE000661.37 (Hsap), IFNG-AS1 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_90', 'DLNP_90 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_90'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051092': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051092', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051092', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_91', 'TRIM22 (Hsap), CD200R1L (Hsap), CTC-340A15.2 (Hsap), CTC-535M15.2 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_91 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_91'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051093': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051093', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051093', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_92', 'FSHR (Hsap), CTB-57H20.1 (Hsap), RP11-286O1.1 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_92 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_92'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051094': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051094', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051094', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_93', 'NXPH2 (Hsap), ROR1 (Hsap), CTB-57H20.1 (Hsap), IFNG-AS1 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_93 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_93'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051095': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051095', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051095', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_94', 'ROBO3 (Hsap), CD200R1L (Hsap), RP11-511B7.2 (Hsap), RP11-421N8.3 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_94 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_94'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051096': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051096', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051096', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_95', 'MYOCD (Hsap), FSHR (Hsap), NPSR1-AS1 (Hsap), RP11-354I13.2 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_95 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_95'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051097': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051097', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051097', 'parent': 'http://purl.obolibrary.org/obo/CL_4023012', 'children': [], 'synonymLabels': ['DLNP_96', 'HMGA2 (Hsap), LINC02008 (Hsap) expressing near-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLNP_96 near-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlnp_96'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051098': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051098', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051098', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_97', 'GUCA1C (Hsap), RP11-238K6.2 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_97 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_97'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051099': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051099', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051099', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['CDH24 (Hsap), ERG (Hsap), IL15 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_98', 'DLCT6b_98 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_98'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051100': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051100', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051100', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_99', 'FAM160A1 (Hsap), DPP4 (Hsap), RP11-467L24.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_99 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_99'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051101': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051101', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051101', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_100', 'SEMA5A (Hsap), SULF1 (Hsap), RXFP1 (Hsap), LINC02232 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_100 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_100'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051102': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051102', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051102', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_101', 'NFIA-AS2 (Hsap), RP11-467L24.1 (Hsap), RP11-120L14.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_101 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_101'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051103': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051103', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051103', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['ADAMTSL1 (Hsap), LINC01821 (Hsap), AC064875.2 (Hsap), RP11-467L24.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_102', 'DLCT6b_102 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_102'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051104': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051104', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051104', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_103', 'PLA2G4A (Hsap), CCN2 (Hsap), RP11-467L24.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_103 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_103'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051105': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051105', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051105', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_104', 'TRIM22 (Hsap), RP11-467L24.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_104 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_104'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051106': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051106', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051106', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['CCN2 (Hsap), RP4-736H5.3 (Hsap), LINC01680 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_105', 'DLCT6b_105 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_105'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051107': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051107', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051107', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_106', 'EDNRA (Hsap), CTD-2050E21.1 (Hsap), RP11-81D17.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_106 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_106'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051108': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051108', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051108', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_107', 'SYT6 (Hsap), ITGA11 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_107 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_107'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051109': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051109', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051109', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_108', 'RP11-369E15.3 (Hsap), ADAMTSL1 (Hsap), SEMA3E (Hsap), LINC01821 (Hsap), CTB-57H20.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_108 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_108'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051110': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051110', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051110', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_109', 'LINC02153 (Hsap), RP11-369E15.3 (Hsap), LINC01821 (Hsap), LINC02263 (Hsap), AC114765.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_109 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_109'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051111': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051111', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051111', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['CAV1 (Hsap), TRIM22 (Hsap), SULF1 (Hsap), RP11-640F22.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_110', 'DLCT6b_110 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_110'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051112': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051112', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051112', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_111', 'SULF1 (Hsap), FBXL21P (Hsap), TMEM233 (Hsap), GABRQ (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_111 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_111'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051113': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051113', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051113', 'parent': 'http://purl.obolibrary.org/obo/CL_0000679', 'children': [], 'synonymLabels': ['DLCT6b_112', 'SULF1 (Hsap), MSC-AS1 (Hsap), RP11-467L24.1 (Hsap) expressing glutamatergic neuron of brain (Homo sapiens)', 'DLCT6b_112 glutamatergic neuron (Hsap)'], 'label': 'dlct6b_112'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051114': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051114', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051114', 'parent': 'http://purl.obolibrary.org/obo/CL_4023009', 'children': [], 'synonymLabels': ['L5ET_113', 'LINC00943 (Hsap), LINC02424 (Hsap) expressing L5 extratelencephalic projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'L5ET_113 L5 extratelencephalic projecting glutamatergic cortical neuron (Hsap)'], 'label': 'l5et_113'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051115': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051115', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051115', 'parent': 'http://purl.obolibrary.org/obo/CL_4023009', 'children': [], 'synonymLabels': ['L5ET_114', 'LINC00326 (Hsap), CTB-57H20.1 (Hsap), RP11-370K2.1 (Hsap) expressing L5 extratelencephalic projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'L5ET_114 L5 extratelencephalic projecting glutamatergic cortical neuron (Hsap)'], 'label': 'l5et_114'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051116': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051116', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051116', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CSN1S1 (Hsap), XIST (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'L5ET_115', 'L5ET_115 hippocampal CA1-3 neuron (Hsap)'], 'label': 'l5et_115'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051117': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051117', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051117', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['Misc_116', 'PCSK6 (Hsap), ERG (Hsap), FAM160A1 (Hsap), ATP10A (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_116 cerebral cortex neuron (Hsap)'], 'label': 'misc_116'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051118': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051118', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051118', 'parent': 'http://purl.obolibrary.org/obo/CL_0012001', 'children': [], 'synonymLabels': ['L5ET_117', 'LRP2 (Hsap), GABRQ (Hsap), RP11-622O11.6 (Hsap) expressing von Economo neuron of brain (Homo sapiens)', 'L5ET_117 von Economo neuron (Hsap)'], 'label': 'l5et_117'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051119': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051119', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051119', 'parent': 'http://purl.obolibrary.org/obo/CL_4023009', 'children': [], 'synonymLabels': ['L5ET_118', 'LRP2 (Hsap), CSN1S1 (Hsap), RP4-678D15.1 (Hsap) expressing L5 extratelencephalic projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'L5ET_118 L5 extratelencephalic projecting glutamatergic cortical neuron (Hsap)'], 'label': 'l5et_118'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051120': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051120', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051120', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_119', 'CTXND1 (Hsap), RP11-153I24.5 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_119 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_119'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051121': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051121', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051121', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['GLP2R (Hsap), SEMA3C (Hsap), TRPC6 (Hsap), LINC01378 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_120', 'ULIT_120 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_120'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051122': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051122', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051122', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['RP4-809F18.1 (Hsap), ANKRD20A11P (Hsap), AC011288.2 (Hsap), LAMP5 (Hsap), TTC6 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_121', 'ULIT_121 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_121'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051123': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051123', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051123', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['PDGFD (Hsap), LINC00507 (Hsap), LINC01500 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_122', 'ULIT_122 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_122'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051124': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051124', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051124', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['PDGFD (Hsap), RP11-191L9.4 (Hsap), LINC02263 (Hsap), LINC02306 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_123', 'ULIT_123 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_123'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051125': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051125', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051125', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['RP11-380P13.1 (Hsap), LINC00508 (Hsap), LINC02306 (Hsap), RP11-335E8.3 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_124', 'ULIT_124 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_124'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051126': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051126', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051126', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['CYP1B1-AS1 (Hsap), LINC01331 (Hsap), LINC02306 (Hsap), RP11-335E8.3 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_125', 'ULIT_125 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_125'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051127': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051127', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051127', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['AJ006998.2 (Hsap), RP11-120L14.1 (Hsap), RP11-632B21.2 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_126', 'ULIT_126 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_126'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051128': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051128', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051128', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['CARM1P1 (Hsap), AJ006998.2 (Hsap), RP11-120L14.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_127', 'ULIT_127 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_127'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051129': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051129', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051129', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['LAMA2 (Hsap), COL5A2 (Hsap), LINC02055 (Hsap), RP11-387P12.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_128', 'ULIT_128 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_128'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051130': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051130', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051130', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['LINC00326 (Hsap), CTD-2050E21.1 (Hsap), LINC02296 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_129', 'ULIT_129 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_129'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051131': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051131', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051131', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['COL5A2 (Hsap), RP11-191L9.4 (Hsap), LINC02296 (Hsap), RP11-370K2.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_130', 'ULIT_130 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_130'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051132': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051132', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051132', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['RP11-191L9.4 (Hsap), AC067959.1 (Hsap), LINC02306 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_131', 'ULIT_131 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_131'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051133': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051133', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051133', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['ETS1 (Hsap), CD53 (Hsap), RORB (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_132', 'Misc_132 cerebral cortex neuron (Hsap)'], 'label': 'misc_132'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051134': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051134', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051134', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['POU6F2 (Hsap), TRPC3 (Hsap), ADAMTS17 (Hsap), RORB (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_133', 'ULIT_133 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_133'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051135': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051135', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051135', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['ULIT_134', 'VIPR2 (Hsap), CTB-57H20.1 (Hsap), RP11-484I6.9 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_134 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_134'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051136': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051136', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051136', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['COL22A1 (Hsap), RP11-197K6.1 (Hsap), CTD-2058B24.2 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_135', 'ULIT_135 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_135'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051137': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051137', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051137', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_136', 'RP11-114G22.1 (Hsap), RP11-404H1.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_136 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_136'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051138': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051138', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051138', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['AC005150.1 (Hsap), LINC02196 (Hsap), CTD-2195H9.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_137', 'DLIT_137 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_137'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051139': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051139', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051139', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['LINC02306 (Hsap), RP11-320L2.1 (Hsap), RP11-404H1.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'ULIT_138', 'ULIT_138 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'ulit_138'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051140': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051140', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051140', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['AC005150.1 (Hsap), RP11-79E3.2 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_139', 'DLIT_139 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_139'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051141': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051141', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051141', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_140', 'LINC02263 (Hsap), CTB-57H20.1 (Hsap), RP11-79E3.2 (Hsap), RP11-320L2.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_140 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_140'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051142': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051142', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051142', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_141', 'NPNT (Hsap), RORB (Hsap), RP11-320L2.1 (Hsap), RP11-511B7.2 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_141 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_141'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051143': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051143', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051143', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_142', 'THEMIS (Hsap), CTC-535M15.2 (Hsap), CTD-2195H9.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_142 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_142'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051144': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051144', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051144', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['CMTM8 (Hsap), LINC01821 (Hsap), AC005150.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_143', 'DLIT_143 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_143'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051145': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051145', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051145', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_144', 'LINC02263 (Hsap), AC005150.1 (Hsap), RP11-537P24.1 (Hsap), RP11-320L2.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_144 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_144'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051146': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051146', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051146', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['ALKAL2 (Hsap), AJ006998.2 (Hsap), LINC02237 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_145', 'DLIT_145 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_145'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051147': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051147', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051147', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['CBLN2 (Hsap), ADAMTS16 (Hsap), FBXL21P (Hsap), SNTG2 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_146', 'DLIT_146 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_146'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051148': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051148', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051148', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['CCN4 (Hsap), RP4-809F18.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_147', 'DLIT_147 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_147'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051149': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051149', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051149', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_148', 'MCUB (Hsap), POU6F2 (Hsap), ADAMTS3 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_148 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_148'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051150': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051150', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051150', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_149', 'THEMIS (Hsap), CTD-2050E21.2 (Hsap), RP11-191L9.4 (Hsap), TESPA1 (Hsap), LINC00343 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_149 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_149'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051151': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051151', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051151', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_150', 'POSTN (Hsap), THEMIS (Hsap), HPSE2 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_150 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_150'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051152': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051152', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051152', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['ATP10A (Hsap), RP11-81F8.1 (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_151', 'DLIT_151 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_151'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051153': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051153', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051153', 'parent': 'http://purl.obolibrary.org/obo/CL_4023008', 'children': [], 'synonymLabels': ['DLIT_152', 'PLA2G4A (Hsap), STK32B (Hsap) expressing intratelencephalic-projecting glutamatergic cortical neuron of brain (Homo sapiens)', 'DLIT_152 intratelencephalic-projecting glutamatergic cortical neuron (Hsap)'], 'label': 'dlit_152'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051154': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051154', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051154', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_153', 'PPP1R1C (Hsap), FER1L6-AS2 (Hsap), RP11-421N8.3 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_153 amygdala excitatory neuron (Hsap)'], 'label': 'amex_153'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051155': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051155', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051155', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_154', 'PTGER3 (Hsap), DCSTAMP (Hsap), RP11-33A14.1 (Hsap), RP11-412K20.1 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_154 amygdala excitatory neuron (Hsap)'], 'label': 'amex_154'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051156': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051156', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051156', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_155', 'CTD-2195H9.1 (Hsap), RP11-412K20.1 (Hsap), RP11-421N8.3 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_155 amygdala excitatory neuron (Hsap)'], 'label': 'amex_155'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051157': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051157', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051157', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_156', 'MOXD1 (Hsap), TACR3 (Hsap), RP11-63G10.4 (Hsap), RP11-799O21.2 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_156 amygdala excitatory neuron (Hsap)'], 'label': 'amex_156'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051158': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051158', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051158', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_157', 'TG (Hsap), LAMA3 (Hsap), RP11-799O21.2 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_157 amygdala excitatory neuron (Hsap)'], 'label': 'amex_157'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051159': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051159', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051159', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_158', 'NPFFR2 (Hsap), TACR3 (Hsap), WDR86 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_158 amygdala excitatory neuron (Hsap)'], 'label': 'amex_158'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051160': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051160', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051160', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_159', 'CALCRL (Hsap), POSTN (Hsap), LINC01821 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_159 amygdala excitatory neuron (Hsap)'], 'label': 'amex_159'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051161': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051161', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051161', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_160', 'PTGER3 (Hsap), NPFFR2 (Hsap), PLEKHG4B (Hsap), MSC-AS1 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_160 amygdala excitatory neuron (Hsap)'], 'label': 'amex_160'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051162': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051162', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051162', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_161', 'TG (Hsap), MEPE (Hsap), S100Z (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_161 amygdala excitatory neuron (Hsap)'], 'label': 'amex_161'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051163': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051163', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051163', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_162', 'POSTN (Hsap), CCBE1 (Hsap), AC067959.1 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_162 amygdala excitatory neuron (Hsap)'], 'label': 'amex_162'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051164': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051164', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051164', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_163', 'POSTN (Hsap), AC004862.6 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_163 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_163'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051165': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051165', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051165', 'parent': 'http://purl.obolibrary.org/obo/CL_0012001', 'children': [], 'synonymLabels': ['LINC02653 (Hsap), LINC01885 (Hsap), RP11-369E15.3 (Hsap), LINC01482 (Hsap) expressing neuron of the forebrain of brain (Homo sapiens)', 'Misc_164', 'Misc_164 neuron of the forebrain (Hsap)'], 'label': 'misc_164'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051166': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051166', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051166', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['Misc_165', 'RP11-60A8.1 (Hsap), LINC02752 (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_165 cerebral cortex neuron (Hsap)'], 'label': 'misc_165'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051167': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051167', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051167', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['C10orf90 (Hsap), RP11-537P24.1 (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_166', 'Misc_166 cerebral cortex neuron (Hsap)'], 'label': 'misc_166'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051168': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051168', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051168', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['ANO2 (Hsap), TRPC6 (Hsap), TSHZ2 (Hsap), RP4-678D15.1 (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_167', 'Misc_167 cerebral cortex neuron (Hsap)'], 'label': 'misc_167'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051169': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051169', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051169', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['DCN (Hsap), SCHLAP1 (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_168', 'Misc_168 cerebral cortex neuron (Hsap)'], 'label': 'misc_168'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051170': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051170', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051170', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_169', 'ITGA4 (Hsap), RP11-191L9.4 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_169 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_169'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051171': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051171', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051171', 'parent': 'http://purl.obolibrary.org/obo/CL_0012001', 'children': [], 'synonymLabels': ['DCN (Hsap), GRB14 (Hsap) expressing neuron of the forebrain of brain (Homo sapiens)', 'Misc_170', 'Misc_170 neuron of the forebrain (Hsap)'], 'label': 'misc_170'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051172': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051172', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051172', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_171', 'LINC01876 (Hsap), RP11-60A8.1 (Hsap), CTD-2058B24.2 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_171 amygdala excitatory neuron (Hsap)'], 'label': 'amex_171'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051173': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051173', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051173', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_172', 'CRHR2 (Hsap), RP11-60A8.1 (Hsap), LINC02055 (Hsap), RP11-370B11.4 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_172 amygdala excitatory neuron (Hsap)'], 'label': 'amex_172'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051174': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051174', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051174', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['AC092684.1 (Hsap), RP11-60A8.1 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_173', 'Amex_173 amygdala excitatory neuron (Hsap)'], 'label': 'amex_173'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051175': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051175', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051175', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_174', 'RP11-418J17.3 (Hsap), RP11-60A8.1 (Hsap), FER1L6-AS2 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_174 amygdala excitatory neuron (Hsap)'], 'label': 'amex_174'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051176': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051176', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051176', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_175', 'LINC02248 (Hsap), RP11-153I24.5 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_175 amygdala excitatory neuron (Hsap)'], 'label': 'amex_175'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051177': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051177', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051177', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['COBLL1 (Hsap), FREM2 (Hsap), CARM1P1 (Hsap), RP11-719N9.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Misc_176', 'Misc_176 neuron (Hsap)'], 'label': 'misc_176'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051178': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051178', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051178', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['CALCRL (Hsap), CTC-535M15.2 (Hsap), RP11-719N9.1 (Hsap), COBLL1 (Hsap), VIPR2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Misc_177', 'Misc_177 neuron (Hsap)'], 'label': 'misc_177'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051179': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051179', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051179', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['CTC-340A15.2 (Hsap), CTC-535M15.2 (Hsap), RP11-370B11.4 (Hsap), RP11-719N9.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Misc_178', 'Misc_178 neuron (Hsap)'], 'label': 'misc_178'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051180': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051180', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051180', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_179', 'COL24A1 (Hsap), COL5A2 (Hsap), AC004538.3 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_179 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_179'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051181': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051181', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051181', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['BHLHE22 (Hsap), AC004538.3 (Hsap), RP11-142C4.6 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_180', 'CA13_180 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_180'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051182': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051182', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051182', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_181', 'SLC30A8 (Hsap), COL5A2 (Hsap), AC004538.3 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_181 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_181'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051183': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051183', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051183', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_182', 'RP11-167H9.4 (Hsap), RP11-60A8.1 (Hsap), AC004538.3 (Hsap), CTXND1 (Hsap), FNDC1 (Hsap), COL5A2 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_182 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_182'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051184': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051184', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051184', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['ABCA13 (Hsap), CASC6 (Hsap), AC004538.3 (Hsap), RP11-60A8.1 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_183', 'CA13_183 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_183'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051185': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051185', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051185', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['AC004538.3 (Hsap), RP11-60A8.1 (Hsap), LINC02153 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_184', 'CA13_184 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_184'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051186': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051186', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051186', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_185', 'NTS (Hsap), RP11-60A8.1 (Hsap), LINC02153 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_185 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_185'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051187': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051187', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051187', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_186', 'NTS (Hsap), RP11-369E15.3 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_186 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_186'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051188': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051188', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051188', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_187', 'ITGA4 (Hsap), AC004538.3 (Hsap), GABRQ (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_187 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_187'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051189': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051189', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051189', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_188', 'COL24A1 (Hsap), CCBE1 (Hsap), LINC02055 (Hsap), CTXND1 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_188 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_188'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051190': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051190', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051190', 'parent': 'http://purl.obolibrary.org/obo/CL_4023060', 'children': [], 'synonymLabels': ['CA13_189', 'CCN1 (Hsap), ATP10A (Hsap), CTXND1 (Hsap) expressing hippocampal CA1-3 neuron of brain (Homo sapiens)', 'CA13_189 hippocampal CA1-3 neuron (Hsap)'], 'label': 'ca13_189'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051191': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051191', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051191', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_190', 'HGF (Hsap), FREM2 (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_190 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_190'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051192': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051192', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051192', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_191', 'NTS (Hsap), ST18 (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_191 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_191'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051193': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051193', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051193', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_192', 'CASR (Hsap), ITGA4 (Hsap), ATP10A (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_192 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_192'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051194': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051194', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051194', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_193', 'SCGN (Hsap), SLC47A1 (Hsap), HHIP (Hsap), XACT (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_193 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_193'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051195': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051195', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051195', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_194', 'RPL26 (Hsap), C9orf16 (Hsap), HOPX (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_194 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_194'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051196': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051196', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051196', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_195', 'ITGA4 (Hsap), HHIP (Hsap), NPNT (Hsap), COL5A2 (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_195 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_195'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051197': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051197', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051197', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_196', 'ITGA4 (Hsap), LINC02196 (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_196 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_196'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051198': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051198', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051198', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_197', 'LINC02196 (Hsap), RP11-719N9.1 (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_197 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_197'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051199': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051199', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051199', 'parent': 'http://purl.obolibrary.org/obo/CL_4023061', 'children': [], 'synonymLabels': ['CA4_198', 'EYS (Hsap), COL5A2 (Hsap), CTXND1 (Hsap) expressing hippocampal CA4 neuron of brain (Homo sapiens)', 'CA4_198 hippocampal CA4 neuron (Hsap)'], 'label': 'ca4_198'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051200': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051200', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051200', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['DG_199', 'POSTN (Hsap), bP-21201H5.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_199 dentate gyrus granule cell (Hsap)'], 'label': 'dg_199'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051201': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051201', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051201', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['CHRNA1 (Hsap), SCART1 (Hsap), RP11-217C7.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_200', 'DG_200 dentate gyrus granule cell (Hsap)'], 'label': 'dg_200'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051202': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051202', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051202', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['DG_201', 'SLC47A1 (Hsap), RP11-217C7.1 (Hsap), RP11-719N9.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_201 dentate gyrus granule cell (Hsap)'], 'label': 'dg_201'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051203': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051203', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051203', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['DG_202', 'TTR (Hsap), ADRA1A (Hsap), RP11-719N9.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_202 dentate gyrus granule cell (Hsap)'], 'label': 'dg_202'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051204': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051204', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051204', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['DG_203', 'ST18 (Hsap), LINC02248 (Hsap), RP11-484N11.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_203 dentate gyrus granule cell (Hsap)'], 'label': 'dg_203'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051205': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051205', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051205', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['DG_204', 'TTR (Hsap), CASC6 (Hsap), LINC00499 (Hsap), RP11-287J11.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_204 dentate gyrus granule cell (Hsap)'], 'label': 'dg_204'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051206': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051206', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051206', 'parent': 'http://purl.obolibrary.org/obo/CL_4023062', 'children': [], 'synonymLabels': ['DG_205', 'RP11-217C7.1 (Hsap), CTD-2215L10.1 (Hsap), RP11-287J11.1 (Hsap) expressing dentate gyrus granule cell of brain (Homo sapiens)', 'DG_205 dentate gyrus granule cell (Hsap)'], 'label': 'dg_205'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051207': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051207', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051207', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['GLI3 (Hsap), EBF1 (Hsap), AC002066.1 (Hsap), RP11-640F22.1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'MSN_206', 'MSN_206 medium spiny neuron (Hsap)'], 'label': 'msn_206'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051208': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051208', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051208', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['DRD2 (Hsap), MME (Hsap), LINC01378 (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_207', 'MSN_207 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_207'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051209': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051209', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051209', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_208', 'SH3RF2 (Hsap), PENK (Hsap), RP1-71H24.1 (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_208 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_208'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051210': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051210', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051210', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_209', 'SH3RF2 (Hsap), DRD1 (Hsap), LINC02137 (Hsap), RP11-358P11.1 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_209 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_209'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051211': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051211', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051211', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['LINC02137 (Hsap), RP11-286O1.1 (Hsap), LINC02822 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_210', 'MSN_210 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_210'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051212': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051212', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051212', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_211', 'PTPRQ (Hsap), DRD1 (Hsap), RP11-640F22.1 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_211 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_211'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051213': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051213', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051213', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_212', 'PENK (Hsap), RP5-1180C18.1 (Hsap), RP11-358P11.1 (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_212 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_212'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051214': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051214', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051214', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_213', 'PENK (Hsap), LINC00534 (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_213 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_213'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051215': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051215', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051215', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_214', 'STAC (Hsap), DRD1 (Hsap), LINC01117 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_214 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_214'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051216': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051216', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051216', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['DRD1 (Hsap), RP11-829H16.3 (Hsap), RP11-875G18.1 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_215', 'MSN_215 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_215'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051217': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051217', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051217', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EYA2 (Hsap), CTC-340A15.2 (Hsap), RP11-97F8.2 (Hsap), PENK (Hsap), DRD2 (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_216', 'MSN_216 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_216'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051218': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051218', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051218', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['MSN_217', 'PENK (Hsap), DCDC2C (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_217 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_217'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051219': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051219', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051219', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['DRD3 (Hsap), MME (Hsap), RP11-142I20.2 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'MSN_218', 'MSN_218 medium spiny neuron (Hsap)'], 'label': 'msn_218'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051220': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051220', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051220', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['ISL1 (Hsap), FOXP2 (Hsap), CXCL14 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_219', 'MSN_219 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_219'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051221': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051221', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051221', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['ISL1 (Hsap), PCSK6 (Hsap), MKX (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_220', 'MSN_220 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_220'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051222': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051222', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051222', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['DRD2 (Hsap), CTC-535M15.2 (Hsap), RP11-111G13.1 (Hsap) expressing indirect pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_221', 'MSN_221 indirect pathway medium spiny neuron (Hsap)'], 'label': 'msn_221'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051223': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051223', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051223', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_222', 'TAC1 (Hsap), GFRA1 (Hsap), PENK (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_222 medium spiny neuron (Hsap)'], 'label': 'emsn_222'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051224': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051224', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051224', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_223', 'TAC1 (Hsap), CALCRL (Hsap), GFRA1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_223 medium spiny neuron (Hsap)'], 'label': 'emsn_223'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051225': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051225', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051225', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_224', 'TACR1 (Hsap), FOXP2 (Hsap), ALK (Hsap), RXFP1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_224 medium spiny neuron (Hsap)'], 'label': 'emsn_224'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051226': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051226', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051226', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_225', 'LAMA3 (Hsap), CASZ1 (Hsap), LINC02137 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_225 medium spiny neuron (Hsap)'], 'label': 'emsn_225'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051227': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051227', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051227', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_226', 'EYA2 (Hsap), PTPRQ (Hsap), CXCL14 (Hsap), RXFP1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_226 medium spiny neuron (Hsap)'], 'label': 'emsn_226'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051228': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051228', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051228', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_227', 'NPFFR2 (Hsap), ONECUT2 (Hsap), FAM160A1 (Hsap), XACT (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_227 medium spiny neuron (Hsap)'], 'label': 'emsn_227'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051229': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051229', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051229', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_228', 'NPFFR2 (Hsap), RP11-154H17.1 (Hsap), SEMA3C (Hsap), MEIS1 (Hsap), ADAMTSL1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_228 medium spiny neuron (Hsap)'], 'label': 'emsn_228'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051230': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051230', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051230', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['CACNG5 (Hsap), MEIS1 (Hsap), PTH2R (Hsap), ADAMTSL1 (Hsap), TSHZ1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_229', 'EMSN_229 medium spiny neuron (Hsap)'], 'label': 'emsn_229'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051231': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051231', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051231', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_230', 'EYA2 (Hsap), HRH3 (Hsap), ADAMTS3 (Hsap), RXFP1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_230 medium spiny neuron (Hsap)'], 'label': 'emsn_230'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051232': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051232', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051232', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_231', 'RXFP1 (Hsap), NPFFR2 (Hsap), VWC2L (Hsap), LMNTD1 (Hsap), PCDH11Y (Hsap), TLL1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_231 medium spiny neuron (Hsap)'], 'label': 'emsn_231'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051233': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051233', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051233', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['ABCA1 (Hsap), RXFP1 (Hsap), CHRM5 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_232', 'EMSN_232 medium spiny neuron (Hsap)'], 'label': 'emsn_232'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051234': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051234', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051234', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['CADPS2 (Hsap), PCDH11X (Hsap), AC133680.1 (Hsap), ZNF736P9Y (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_233', 'EMSN_233 medium spiny neuron (Hsap)'], 'label': 'emsn_233'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051235': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051235', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051235', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_234', 'PAX6 (Hsap), NPFFR2 (Hsap), PRLR (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_234 medium spiny neuron (Hsap)'], 'label': 'emsn_234'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051236': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051236', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051236', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['NOS1 (Hsap), NPY (Hsap) expressing long-range projecting sst GABAergic cortical interneuron (Mmus) of brain (Homo sapiens)', 'Splat_235', 'Splat_235 long-range projecting sst GABAergic cortical interneuron (Mmus) (Hsap)'], 'label': 'splat_235'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051237': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051237', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051237', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_236', 'TAC1 (Hsap), PRTG (Hsap), MYO5B (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_236 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_236'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051238': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051238', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051238', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['BCHE (Hsap), CMTM8 (Hsap), PDGFD (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'Splat_237', 'Splat_237 sst GABAergic cortical interneuron (Hsap)'], 'label': 'splat_237'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051239': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051239', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051239', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_238', 'ST18 (Hsap), IL1RAPL2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_238 neuron (Hsap)'], 'label': 'splat_238'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051240': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051240', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051240', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_239', 'PIEZO2 (Hsap), HPSE2 (Hsap), RP11-656G20.1 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_239 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_239'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051241': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051241', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051241', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_240', 'SYT10 (Hsap), FBN2 (Hsap), TAFA4 (Hsap), RP11-656G20.1 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_240 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_240'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051242': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051242', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051242', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_241', 'SOX6 (Hsap), BMP6 (Hsap), ANKRD30B (Hsap), RP11-656G20.1 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_241 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_241'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051243': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051243', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051243', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_242', 'MME (Hsap), MCUB (Hsap), SOX6 (Hsap), ADAMTSL1 (Hsap), FBN2 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_242 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_242'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051244': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051244', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051244', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['CALB1 (Hsap), EYA4 (Hsap), PENK (Hsap), CTD-2533K21.4 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_243', 'MGE_243 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_243'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051245': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051245', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051245', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['CBLN4 (Hsap), NPY (Hsap), TAC3 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_244', 'MGE_244 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_244'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051246': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051246', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051246', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_245', 'NPY (Hsap), FBN2 (Hsap), RP11-656G20.1 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_245 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_245'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051247': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051247', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051247', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_246', 'SST (Hsap), MAF (Hsap), LINC02008 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_246 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_246'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051248': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051248', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051248', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['LPAR1 (Hsap), COL5A2 (Hsap), CTD-2288O8.3 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_247', 'MGE_247 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_247'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051249': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051249', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051249', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_248', 'TAC1 (Hsap), DCN (Hsap), RP11-799O21.2 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_248 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_248'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051250': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051250', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051250', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_249', 'SST (Hsap), SEMA3A (Hsap), TRPC7 (Hsap), RSPO3 (Hsap), SOX6 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_249 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_249'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051251': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051251', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051251', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_250', 'PROM1 (Hsap), ADGRG6 (Hsap), ADAMTS9-AS2 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_250 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_250'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051252': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051252', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051252', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['ADGRG6 (Hsap), SST (Hsap), RELN (Hsap), RP11-387P12.1 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_251', 'MGE_251 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_251'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051253': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051253', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051253', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['EDNRA (Hsap), TAC3 (Hsap), ABC10-43608400O15.1 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_252', 'MGE_252 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_252'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051254': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051254', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051254', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['CTC-535M15.2 (Hsap), SST (Hsap), VCAN (Hsap), CTC-340A15.2 (Hsap), TRPC6 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_253', 'MGE_253 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_253'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051255': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051255', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051255', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_254', 'NPAS1 (Hsap), FBN2 (Hsap), ADAMTS20 (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_254 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_254'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051256': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051256', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051256', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['HGF (Hsap), BCHE (Hsap), RP11-238K6.2 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_255', 'MGE_255 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_255'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051257': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051257', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051257', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['ADAMTS17 (Hsap), MYBPC1 (Hsap), SHISA8 (Hsap) expressing pvalb GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_256', 'MGE_256 pvalb GABAergic cortical interneuron (Hsap)'], 'label': 'mge_256'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051258': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051258', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051258', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_257', 'RGS5_ENSG00000143248 (Hsap), MEPE (Hsap) expressing pvalb GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_257 pvalb GABAergic cortical interneuron (Hsap)'], 'label': 'mge_257'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051259': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051259', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051259', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_258', 'WNT16 (Hsap), SST (Hsap), PAWR (Hsap) expressing sst GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_258 sst GABAergic cortical interneuron (Hsap)'], 'label': 'mge_258'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051260': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051260', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051260', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['ANOS1 (Hsap), RGS5_ENSG00000143248 (Hsap), BTBD11 (Hsap) expressing pvalb GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_259', 'MGE_259 pvalb GABAergic cortical interneuron (Hsap)'], 'label': 'mge_259'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051261': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051261', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051261', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['IQGAP2 (Hsap), TAFA4 (Hsap), CTXND1 (Hsap) expressing pvalb GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_260', 'MGE_260 pvalb GABAergic cortical interneuron (Hsap)'], 'label': 'mge_260'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051262': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051262', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051262', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_261', 'PVALB (Hsap), CEMIP (Hsap), ADAMTS17 (Hsap), AC133680.1 (Hsap) expressing pvalb GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_261 pvalb GABAergic cortical interneuron (Hsap)'], 'label': 'mge_261'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051263': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051263', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051263', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_262', 'SULF1 (Hsap), PIEZO2 (Hsap), RP1-35C21.2 (Hsap), ADAMTS9-AS2 (Hsap) expressing pvalb GABAergic cortical interneuron of brain (Homo sapiens)', 'MGE_262 pvalb GABAergic cortical interneuron (Hsap)'], 'label': 'mge_262'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051264': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051264', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051264', 'parent': 'http://purl.obolibrary.org/obo/CL_4023063', 'children': [], 'synonymLabels': ['MGE_263', 'PVALB (Hsap), SULF1 (Hsap), AC133680.1 (Hsap), RP11-875G18.1 (Hsap) expressing medial ganglionic eminence derived interneuron of brain (Homo sapiens)', 'MGE_263 medial ganglionic eminence derived interneuron (Hsap)'], 'label': 'mge_263'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051265': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051265', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051265', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['CRH (Hsap), COL15A1 (Hsap), RP11-238K6.2 (Hsap) expressing chandelier cell of brain (Homo sapiens)', 'LLC_264', 'LLC_264 chandelier cell (Hsap)'], 'label': 'llc_264'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051266': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051266', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051266', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_265', 'PTHLH (Hsap), RP11-238K6.2 (Hsap) expressing chandelier cell of brain (Homo sapiens)', 'LLC_265 chandelier cell (Hsap)'], 'label': 'llc_265'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051267': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051267', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051267', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_266', 'UNC5B (Hsap), C1QL1 (Hsap), GRIN2C (Hsap) expressing chandelier cell of brain (Homo sapiens)', 'LLC_266 chandelier cell (Hsap)'], 'label': 'llc_266'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051268': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051268', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051268', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_267', 'MET (Hsap), CHST9 (Hsap), DDR2 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_267 CNS interneuron (Hsap)'], 'label': 'llc_267'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051269': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051269', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051269', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['EYA4 (Hsap), TACR1 (Hsap), CHST9 (Hsap), CMTM8 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_268', 'LLC_268 CNS interneuron (Hsap)'], 'label': 'llc_268'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051270': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051270', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051270', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['ISM1 (Hsap), IFI44 (Hsap), CHST9 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_269', 'LLC_269 CNS interneuron (Hsap)'], 'label': 'llc_269'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051271': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051271', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051271', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_270', 'TAC1 (Hsap), NOS1 (Hsap), PREX2 (Hsap), ADAMTS9-AS2 (Hsap), ARHGAP6 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_270 CNS interneuron (Hsap)'], 'label': 'llc_270'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051272': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051272', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051272', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_271', 'SFRP1 (Hsap), ADGRG6 (Hsap), RP11-563D10.1 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_271 CNS interneuron (Hsap)'], 'label': 'llc_271'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051273': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051273', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051273', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_272', 'SFRP1 (Hsap), LAMP5 (Hsap), FREM2 (Hsap), PDGFD (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_272 CNS interneuron (Hsap)'], 'label': 'llc_272'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051274': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051274', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051274', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['LLC_273', 'LRP2 (Hsap), FBN2 (Hsap), CHST9 (Hsap), RP11-563D10.1 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_273 CNS interneuron (Hsap)'], 'label': 'llc_273'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051275': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051275', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051275', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['FBN2 (Hsap), NFIA-AS2 (Hsap), CTC-806A22.1 (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_274', 'LLC_274 CNS interneuron (Hsap)'], 'label': 'llc_274'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051276': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051276', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051276', 'parent': 'http://purl.obolibrary.org/obo/CL_0000402', 'children': [], 'synonymLabels': ['CA2 (Hsap), SFRP1 (Hsap), CXCL14 (Hsap), PDGFD (Hsap) expressing CNS interneuron of brain (Homo sapiens)', 'LLC_275', 'LLC_275 CNS interneuron (Hsap)'], 'label': 'llc_275'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051277': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051277', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051277', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_276', 'VIP (Hsap), SVEP1 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_276 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_276'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051278': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051278', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051278', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_277', 'SCGN (Hsap), DDR2 (Hsap) expressing caudal ganglionic eminence derived interneuron of brain (Homo sapiens)', 'CGE_277 caudal ganglionic eminence derived interneuron (Hsap)'], 'label': 'cge_277'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051279': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051279', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051279', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_278', 'WIF1 (Hsap), DDR2 (Hsap), CHRNA7 (Hsap) expressing caudal ganglionic eminence derived interneuron of brain (Homo sapiens)', 'CGE_278 caudal ganglionic eminence derived interneuron (Hsap)'], 'label': 'cge_278'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051280': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051280', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051280', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_279', 'DOCK8 (Hsap), CXCL14 (Hsap), FREM2 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_279 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_279'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051281': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051281', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051281', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_280', 'LAMA3 (Hsap), CTD-2008L17.2 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_280 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_280'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051282': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051282', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051282', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_281', 'EDNRA (Hsap), HTR3A (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_281 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_281'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051283': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051283', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051283', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['ADAM33 (Hsap), CTC-367F4.1 (Hsap) expressing caudal ganglionic eminence derived interneuron of brain (Homo sapiens)', 'CGE_282', 'CGE_282 caudal ganglionic eminence derived interneuron (Hsap)'], 'label': 'cge_282'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051284': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051284', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051284', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_283', 'SEMA3C (Hsap), SYT10 (Hsap), CXCL14 (Hsap), SGO1-AS1 (Hsap) expressing caudal ganglionic eminence derived interneuron of brain (Homo sapiens)', 'CGE_283 caudal ganglionic eminence derived interneuron (Hsap)'], 'label': 'cge_283'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051285': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051285', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051285', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CCN2 (Hsap), CXCL14 (Hsap), PCDH18 (Hsap), RP1-35C21.2 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_284', 'CGE_284 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_284'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051286': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051286', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051286', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['VIP (Hsap), PENK (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_285', 'CGE_285 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_285'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051287': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051287', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051287', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_286', 'NMBR (Hsap), CXCL14 (Hsap), NDNF (Hsap) expressing lamp5 GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_286 lamp5 GABAergic cortical interneuron (Hsap)'], 'label': 'cge_286'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051288': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051288', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051288', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_287', 'EYA4 (Hsap), MYH11 (Hsap), ADAMTS20 (Hsap) expressing lamp5 GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_287 lamp5 GABAergic cortical interneuron (Hsap)'], 'label': 'cge_287'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051289': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051289', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051289', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CA2 (Hsap), CXCL14 (Hsap), CRH (Hsap), ROR2 (Hsap) expressing lamp5 GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_288', 'CGE_288 lamp5 GABAergic cortical interneuron (Hsap)'], 'label': 'cge_288'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051290': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051290', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051290', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_289', 'TAC3 (Hsap), AJ006995.3 (Hsap), AC133680.1 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_289 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_289'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051291': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051291', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051291', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_290', 'FLT1 (Hsap), VIP (Hsap), CHRM2 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_290 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_290'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051292': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051292', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051292', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_291', 'NPR3 (Hsap), EDNRA (Hsap), RP1-35C21.2 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_291 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_291'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051293': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051293', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051293', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_292', 'NPR3 (Hsap), CRH (Hsap), PPP1R1C (Hsap), RP11-197H3.1 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_292 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_292'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051294': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051294', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051294', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_293', 'IQGAP2 (Hsap), HS3ST3A1 (Hsap), RP11-197H3.1 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_293 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_293'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051295': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051295', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051295', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_294', 'VIP (Hsap), ABI3BP (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_294 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_294'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051296': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051296', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051296', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_295', 'RXRG (Hsap), VIP (Hsap), CRH (Hsap), RP11-197H3.1 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_295 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_295'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051297': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051297', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051297', 'parent': 'http://purl.obolibrary.org/obo/CL_4023064', 'children': [], 'synonymLabels': ['CGE_296', 'CXCL14 (Hsap), TAC3 (Hsap), CMTM8 (Hsap), LYPD6 (Hsap) expressing vip GABAergic cortical interneuron of brain (Homo sapiens)', 'CGE_296 vip GABAergic cortical interneuron (Hsap)'], 'label': 'cge_296'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051298': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051298', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051298', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['RBP3 (Hsap) expressing neuron of brain (Homo sapiens)', 'URL_297', 'URL_297 neuron (Hsap)'], 'label': 'url_297'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051299': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051299', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051299', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_298', 'VCAN (Hsap), SLC6A5 (Hsap), RELN (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)', 'CBI_298 cerebellar inhibitory GABAergic interneuron (Hsap)'], 'label': 'cbi_298'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051300': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051300', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051300', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_299', 'IGF2BP2 (Hsap), FNDC1 (Hsap), SLC6A5 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)', 'CBI_299 cerebellar inhibitory GABAergic interneuron (Hsap)'], 'label': 'cbi_299'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051301': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051301', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051301', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_300', 'SLC4A11 (Hsap), NDNF (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)', 'CBI_300 cerebellar inhibitory GABAergic interneuron (Hsap)'], 'label': 'cbi_300'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051302': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051302', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051302', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_301 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_301', 'SCIN (Hsap), RREB1 (Hsap), SLC6A5 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_301'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051303': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051303', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051303', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_302 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_302', 'CPLX4 (Hsap), RP11-265I24.1 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_302'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051304': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051304', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051304', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_303 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_303', 'LYPD6 (Hsap), RP11-265I24.1 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_303'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051305': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051305', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051305', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_304 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_304', 'SCGN (Hsap), RP11-274H24.2 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_304'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051306': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051306', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051306', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_305 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_305', 'TFAP2B (Hsap), NTN1 (Hsap), BMPR1B (Hsap), LINC02552 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_305'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051307': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051307', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051307', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_306 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_306', 'SCGN (Hsap), PTPRK (Hsap), MARCHF11 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_306'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051308': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051308', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051308', 'parent': 'http://purl.obolibrary.org/obo/CL_4023057', 'children': [], 'synonymLabels': ['CBI_307 cerebellar inhibitory GABAergic interneuron (Hsap)', 'CBI_307', 'VCAN (Hsap), SCGN (Hsap), NXPH1 (Hsap), LINC02552 (Hsap) expressing cerebellar inhibitory GABAergic interneuron of brain (Homo sapiens)'], 'label': 'cbi_307'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051309': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051309', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051309', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['URL_308 unipolar brush cell (Hsap)', 'EOMES (Hsap), RP11-312A15.5 (Hsap) expressing unipolar brush cell of brain (Homo sapiens)', 'URL_308'], 'label': 'url_308'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051310': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051310', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051310', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['URL_309 neuron (Hsap)', 'ABCA13 (Hsap), RP11-340A13.4 (Hsap) expressing neuron of brain (Homo sapiens)', 'URL_309'], 'label': 'url_309'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051311': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051311', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051311', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['URL_310 cerebellar granule cell (Hsap)', 'RELN (Hsap), RP11-649A16.1 (Hsap), RP11-81F8.1 (Hsap), RP11-97F8.2 (Hsap) expressing cerebellar granule cell of brain (Homo sapiens)', 'URL_310'], 'label': 'url_310'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051312': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051312', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051312', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['URL_311 cerebellar granule cell (Hsap)', 'ETV1 (Hsap), RP11-649A16.1 (Hsap), RP11-81F8.1 (Hsap) expressing cerebellar granule cell of brain (Homo sapiens)', 'URL_311'], 'label': 'url_311'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051313': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051313', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051313', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['URL_312 cerebellar granule cell (Hsap)', 'TTR (Hsap), RP5-1101C3.1 (Hsap), RP11-81F8.1 (Hsap) expressing cerebellar granule cell of brain (Homo sapiens)', 'URL_312'], 'label': 'url_312'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051314': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051314', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051314', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_313 neuron (Hsap)', 'LINC02770 (Hsap), RP11-410K21.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_313'], 'label': 'splat_313'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051315': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051315', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051315', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Misc_314 Purkinje cell (Hsap)', 'Misc_314', 'PCP2 (Hsap) expressing Purkinje cell of brain (Homo sapiens)'], 'label': 'misc_314'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051316': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051316', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051316', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_315 neuron (Hsap)', 'LRL_315', 'TENT5A (Hsap), MME (Hsap), SMOC1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'lrl_315'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051317': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051317', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051317', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_316 neuron (Hsap)', 'EYA2 (Hsap), BTNL9 (Hsap), ADAMTS20 (Hsap) expressing neuron of brain (Homo sapiens)', 'LRL_316'], 'label': 'lrl_316'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051318': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051318', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051318', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_317 neuron (Hsap)', 'BMP5 (Hsap), LINC00836 (Hsap), RP11-46H14.1 (Hsap), RP11-321P16.3 (Hsap) expressing neuron of brain (Homo sapiens)', 'LRL_317'], 'label': 'lrl_317'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051319': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051319', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051319', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_318 neuron (Hsap)', 'CTXN3 (Hsap), LINC00836 (Hsap), RP11-46H14.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'LRL_318'], 'label': 'lrl_318'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051320': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051320', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051320', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_319 neuron (Hsap)', 'FAM114A1 (Hsap), LINC00355 (Hsap) expressing neuron of brain (Homo sapiens)', 'LRL_319'], 'label': 'lrl_319'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051321': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051321', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051321', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_320 neuron (Hsap)', 'LRL_320', 'SYT10 (Hsap), TINAG (Hsap), THSD7B (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'lrl_320'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051322': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051322', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051322', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_321 neuron (Hsap)', 'ADGRL4 (Hsap), VEPH1 (Hsap), LINC01798 (Hsap), RP11-649A16.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'LRL_321'], 'label': 'lrl_321'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051323': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051323', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051323', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LRL_322 neuron (Hsap)', 'LRL_322', 'SLC5A7 (Hsap), LINC01982 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'lrl_322'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051324': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051324', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051324', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_323 mammillary body neuron (Hsap)', 'Mmb_323', 'TAC1 (Hsap), RP11-284G10.1 (Hsap), RP3-401D24.1 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_323'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051325': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051325', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051325', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_324 mammillary body neuron (Hsap)', 'Mmb_324', 'TAC1 (Hsap), RBMS3-AS2 (Hsap), LINC00410 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_324'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051326': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051326', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051326', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_325 mammillary body neuron (Hsap)', 'FSHR (Hsap), LINC00410 (Hsap), RP11-460M2.1 (Hsap), RP3-401D24.1 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)', 'Mmb_325'], 'label': 'mmb_325'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051327': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051327', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051327', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_326 mammillary body neuron (Hsap)', 'Mmb_326', 'SIM1 (Hsap), CRHBP (Hsap), PITX2 (Hsap), RP3-401D24.1 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_326'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051328': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051328', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051328', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_327 mammillary body neuron (Hsap)', 'Mmb_327', 'TAFA4 (Hsap), LINC00410 (Hsap), RP3-401D24.1 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_327'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051329': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051329', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051329', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_328 mammillary body neuron (Hsap)', 'CFAP299 (Hsap), LINC00410 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)', 'Mmb_328'], 'label': 'mmb_328'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051330': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051330', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051330', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_329 mammillary body neuron (Hsap)', 'Mmb_329', 'SIM1 (Hsap), PRLR (Hsap), FBXL7 (Hsap), LINC02196 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_329'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051331': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051331', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051331', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_330 mammillary body neuron (Hsap)', 'Mmb_330', 'NTNG1 (Hsap), PITX2 (Hsap), RP3-401D24.1 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_330'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051332': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051332', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051332', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_331 mammillary body neuron (Hsap)', 'Mmb_331', 'SEMA3C (Hsap), PITX2 (Hsap), RP11-115D10.1 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_331'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051333': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051333', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051333', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_332 mammillary body neuron (Hsap)', 'Mmb_332', 'SIM1 (Hsap), ONECUT2 (Hsap), MYO1B (Hsap), FRMPD2 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)'], 'label': 'mmb_332'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051334': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051334', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051334', 'parent': 'http://purl.obolibrary.org/obo/CL_4023074', 'children': [], 'synonymLabels': ['Mmb_333 mammillary body neuron (Hsap)', 'LTBP1 (Hsap), SIM1 (Hsap), CD36 (Hsap) expressing mammillary body neuron of brain (Homo sapiens)', 'Mmb_333'], 'label': 'mmb_333'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051335': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051335', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051335', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_334 neuron (Hsap)', 'POU4F1 (Hsap), GNG8 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_334'], 'label': 'splat_334'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051336': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051336', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051336', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_335 neuron (Hsap)', 'HSPD1P8 (Hsap), AC003099.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_335'], 'label': 'splat_335'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051337': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051337', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051337', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_336 neuron (Hsap)', 'FAM83B (Hsap), ONECUT1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_336'], 'label': 'splat_336'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051338': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051338', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051338', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_337 neuron (Hsap)', 'Splat_337', 'TAFA4 (Hsap), ONECUT1 (Hsap), C5orf64 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_337'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051339': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051339', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051339', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_338 neuron (Hsap)', 'HOXD3 (Hsap), FSHR (Hsap), RP11-354K4.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_338'], 'label': 'splat_338'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051340': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051340', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051340', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_339 neuron (Hsap)', 'MEIS1 (Hsap), SLC6A5 (Hsap), LINC01798 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_339'], 'label': 'splat_339'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051341': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051341', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051341', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_340 neuron (Hsap)', 'LHX9 (Hsap), ONECUT1 (Hsap), LINC01798 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_340'], 'label': 'splat_340'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051342': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051342', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051342', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_341 neuron (Hsap)', 'EBF3 (Hsap), EBF2 (Hsap), LINC01036 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_341'], 'label': 'splat_341'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051343': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051343', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051343', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_342 neuron (Hsap)', 'LINC01036 (Hsap), LINC02306 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_342'], 'label': 'splat_342'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051344': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051344', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051344', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_343 neuron (Hsap)', 'HOXB3 (Hsap), CASZ1 (Hsap), EBF2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_343'], 'label': 'splat_343'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051345': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051345', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051345', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_344 neuron (Hsap)', 'DOCK8 (Hsap), EBF3 (Hsap), AC067959.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_344'], 'label': 'splat_344'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051346': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051346', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051346', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_345 neuron (Hsap)', 'HOXB3 (Hsap), LMX1B (Hsap), RP11-221G19.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_345'], 'label': 'splat_345'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051347': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051347', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051347', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_346 neuron (Hsap)', 'LMX1B (Hsap), ITGA11 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_346'], 'label': 'splat_346'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051348': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051348', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051348', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_347 neuron (Hsap)', 'PAX2 (Hsap), EBF3 (Hsap), HOXB3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_347'], 'label': 'splat_347'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051349': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051349', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051349', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_348 neuron (Hsap)', 'HOXD3 (Hsap), SALL3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_348'], 'label': 'splat_348'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051350': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051350', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051350', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_349 neuron (Hsap)', 'HOXD3 (Hsap), TSPAN18 (Hsap), AC079135.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_349'], 'label': 'splat_349'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051351': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051351', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051351', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_350 neuron (Hsap)', 'Splat_350', 'TTR (Hsap), HTR2C (Hsap), SLC6A5 (Hsap), ADAMTSL1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_350'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051352': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051352', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051352', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_351 neuron (Hsap)', 'OTX2-AS1 (Hsap), LINC00261 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_351'], 'label': 'splat_351'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051353': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051353', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051353', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_352 neuron (Hsap)', 'GATA3 (Hsap), EBF3 (Hsap), LINC01210 (Hsap), LHX1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_352'], 'label': 'splat_352'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051354': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051354', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051354', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_353 neuron (Hsap)', 'GATA3 (Hsap), HPGD (Hsap), CTC-535M15.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_353'], 'label': 'splat_353'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051355': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051355', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051355', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_354 neuron (Hsap)', 'Splat_354', 'TCF7L2 (Hsap), LHX1 (Hsap), RP11-66G15.1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_354'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051356': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051356', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051356', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_355 neuron (Hsap)', 'Splat_355', 'TRHDE (Hsap), GATA3 (Hsap), KIZ-AS1 (Hsap), ZFPM2-AS1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_355'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051357': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051357', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051357', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_356 neuron (Hsap)', 'GATA3 (Hsap), SATB1-AS1 (Hsap), CTC-535M15.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_356'], 'label': 'splat_356'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051358': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051358', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051358', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_357 neuron (Hsap)', 'Splat_357', 'TFAP2B (Hsap), LEF1 (Hsap), EMX2 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_357'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051359': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051359', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051359', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_358 neuron (Hsap)', 'GATA3 (Hsap), ZFHX3 (Hsap), GRIK1 (Hsap), TFAP2B (Hsap), TAFA1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_358'], 'label': 'splat_358'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051360': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051360', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051360', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_359 neuron (Hsap)', 'Splat_359', 'TFAP2B (Hsap), LEF1 (Hsap), OTX2-AS1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_359'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051361': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051361', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051361', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_360 neuron (Hsap)', 'NDST4 (Hsap), LEF1 (Hsap), OTX2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_360'], 'label': 'splat_360'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051362': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051362', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051362', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_361 neuron (Hsap)', 'Splat_361', 'TAC1 (Hsap), GATA3 (Hsap), SIX3 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_361'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051363': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051363', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051363', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_362 neuron (Hsap)', 'PREX2 (Hsap), PTPRK (Hsap), FSTL5 (Hsap), LUZP2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_362'], 'label': 'splat_362'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051364': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051364', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051364', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_363 neuron (Hsap)', 'Splat_363', 'ST8SIA6 (Hsap), EBF2 (Hsap), NR2F2-AS1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_363'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051365': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051365', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051365', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_364 neuron (Hsap)', 'Splat_364', 'TFAP2D (Hsap), NDST4 (Hsap), CTC-340A15.2 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_364'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051366': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051366', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051366', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_365 neuron (Hsap)', 'MEIS2 (Hsap), HTR2C (Hsap), GNAS (Hsap), CALM1 (Hsap), ZFHX3 (Hsap), CNTN1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_365'], 'label': 'splat_365'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051367': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051367', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051367', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_366 neuron (Hsap)', 'EBF3 (Hsap), TCF7L2 (Hsap), KLHL1 (Hsap), DACH1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_366'], 'label': 'splat_366'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051368': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051368', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051368', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_367 neuron (Hsap)', 'Splat_367', 'TAC1 (Hsap), PRLR (Hsap), TCF7L2 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_367'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051369': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051369', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051369', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_368 neuron (Hsap)', 'EBF3 (Hsap), TCF7L2 (Hsap), EBF1 (Hsap), SNHG14 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_368'], 'label': 'splat_368'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051370': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051370', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051370', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_369 neuron (Hsap)', 'Splat_369', 'TFAP2B (Hsap), LHX9 (Hsap), RP4-678D15.1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_369'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051371': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051371', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051371', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_370 neuron (Hsap)', 'EBF3 (Hsap), LEF1 (Hsap), LGR5 (Hsap), EBF2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_370'], 'label': 'splat_370'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051372': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051372', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051372', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_371 neuron (Hsap)', 'CPA6 (Hsap), BNC2 (Hsap), NPSR1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_371'], 'label': 'splat_371'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051373': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051373', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051373', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['Thex_372 thalamic excitatory neuron (Hsap)', 'PTH2R (Hsap), TCF7L2 (Hsap), FAM9B (Hsap), RNF220 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_372'], 'label': 'thex_372'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051374': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051374', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051374', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_373 neuron (Hsap)', 'LHX2 (Hsap), TCF7L2 (Hsap), SHOX2 (Hsap), PDGFD (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_373'], 'label': 'splat_373'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051375': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051375', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051375', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_374 neuron (Hsap)', 'Splat_374', 'TFAP2B (Hsap), LMX1A (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_374'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051376': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051376', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051376', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_375 neuron (Hsap)', 'CBLN2 (Hsap), POU4F1 (Hsap), CRNDE (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_375'], 'label': 'splat_375'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051377': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051377', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051377', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_376 neuron (Hsap)', 'Splat_376', 'ZFHX3 (Hsap), RP11-491F9.1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_376'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051378': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051378', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051378', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_377 neuron (Hsap)', 'Splat_377', 'ZIC2 (Hsap), DIRAS3 (Hsap), LHX1 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_377'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051379': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051379', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051379', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_378 neuron (Hsap)', 'ISL1 (Hsap), ONECUT1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_378'], 'label': 'splat_378'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051380': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051380', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051380', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_379 neuron (Hsap)', 'SLC6A5 (Hsap), OTP (Hsap), EBF2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_379'], 'label': 'splat_379'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051381': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051381', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051381', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_380 neuron (Hsap)', 'Splat_380', 'EBF3 (Hsap), NXPH2 (Hsap), HTR2C (Hsap), SLC6A5 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_380'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051382': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051382', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051382', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_381 neuron (Hsap)', 'EBF1 (Hsap), OTP (Hsap), EBF2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_381'], 'label': 'splat_381'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051383': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051383', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051383', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_382 neuron (Hsap)', 'RSPO3 (Hsap), TCF7L2 (Hsap), SST (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_382'], 'label': 'splat_382'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051384': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051384', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051384', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_383 neuron (Hsap)', 'LMX1A (Hsap), PITX2 (Hsap), EBF2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_383'], 'label': 'splat_383'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051385': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051385', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051385', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_384 neuron (Hsap)', 'CDH23 (Hsap), LMX1A (Hsap), PITX2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_384'], 'label': 'splat_384'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051386': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051386', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051386', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_385 neuron (Hsap)', 'LMX1A (Hsap), AR (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_385'], 'label': 'splat_385'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051387': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051387', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051387', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_386 neuron (Hsap)', 'HOXB3 (Hsap), NR4A2 (Hsap), TACR3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_386'], 'label': 'splat_386'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051388': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051388', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051388', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_387 neuron (Hsap)', 'PAX5 (Hsap), EBF2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_387'], 'label': 'splat_387'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051389': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051389', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051389', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_388 neuron (Hsap)', 'NPFFR2 (Hsap), LAMA1 (Hsap), LINC01798 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_388'], 'label': 'splat_388'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051390': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051390', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051390', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_389 neuron (Hsap)', 'GATA3 (Hsap), FIGN (Hsap), DACH1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_389'], 'label': 'splat_389'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051391': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051391', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051391', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_390 neuron (Hsap)', 'NRXN3 (Hsap), POU6F2 (Hsap), ZIC1 (Hsap), SNHG14 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_390'], 'label': 'splat_390'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051392': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051392', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051392', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_391 neuron (Hsap)', 'PDGFD (Hsap), CTC-535M15.2 (Hsap), CDH12 (Hsap), ST18 (Hsap), CTC-340A15.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_391'], 'label': 'splat_391'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051393': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051393', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051393', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_392 neuron (Hsap)', 'FGF10 (Hsap), LHX6 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_392'], 'label': 'splat_392'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051394': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051394', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051394', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_393 neuron (Hsap)', 'ISL1 (Hsap), SIX3 (Hsap), RNF220 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_393'], 'label': 'splat_393'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051395': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051395', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051395', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_394 neuron (Hsap)', 'LHX9 (Hsap), NPNT (Hsap), LINC01798 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_394'], 'label': 'splat_394'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051396': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051396', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051396', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_395 neuron (Hsap)', 'SLC6A3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_395'], 'label': 'splat_395'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051397': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051397', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051397', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_396 neuron (Hsap)', 'GATA3 (Hsap), LMX1B (Hsap), SEMA3D (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_396'], 'label': 'splat_396'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051398': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051398', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051398', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_397 neuron (Hsap)', 'SLC6A4 (Hsap), TPH2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_397'], 'label': 'splat_397'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051399': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051399', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051399', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_398 neuron (Hsap)', 'PHOX2B (Hsap), CRNDE (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_398'], 'label': 'splat_398'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051400': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051400', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051400', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_399 neuron (Hsap)', 'Splat_399', 'TFAP2B (Hsap), MEIS2 (Hsap), RNF220 (Hsap) expressing neuron of brain (Homo sapiens)'], 'label': 'splat_399'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051401': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051401', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051401', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_400 neuron (Hsap)', 'SLC5A7 (Hsap), LHX8 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_400'], 'label': 'splat_400'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051402': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051402', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051402', 'parent': 'http://purl.obolibrary.org/obo/CL_0012001', 'children': [], 'synonymLabels': ['Misc_401 neuron of the forebrain (Hsap)', 'Misc_401', 'SOX11 (Hsap), CCBE1 (Hsap), NR2F2-AS1 (Hsap) expressing neuron of the forebrain of brain (Homo sapiens)'], 'label': 'misc_401'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051403': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051403', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051403', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LMNTD1 (Hsap), SST (Hsap), LINC02822 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_402', 'Splat_402 neuron (Hsap)'], 'label': 'splat_402'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051404': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051404', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051404', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['FRMD7 (Hsap), PCBP3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_403', 'Splat_403 neuron (Hsap)'], 'label': 'splat_403'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051405': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051405', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051405', 'parent': 'http://purl.obolibrary.org/obo/CL_0010012', 'children': [], 'synonymLabels': ['LINC02263 (Hsap), AC011288.2 (Hsap), LINC02306 (Hsap) expressing cerebral cortex neuron of brain (Homo sapiens)', 'Misc_404', 'Misc_404 cerebral cortex neuron (Hsap)'], 'label': 'misc_404'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051406': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051406', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051406', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_405', 'MEIS2 (Hsap), RXFP1 (Hsap), NDST4 (Hsap), PRLR (Hsap), CDH13 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_405 amygdala excitatory neuron (Hsap)'], 'label': 'amex_405'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051407': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051407', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051407', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_406', 'IRAG2 (Hsap), RXFP2 (Hsap), CARTPT (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_406 amygdala excitatory neuron (Hsap)'], 'label': 'amex_406'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051408': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051408', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051408', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_407', 'PAPPA2 (Hsap), LHX9 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_407 amygdala excitatory neuron (Hsap)'], 'label': 'amex_407'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051409': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051409', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051409', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_408', 'EOMES (Hsap), HPSE2 (Hsap), RELN (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_408 amygdala excitatory neuron (Hsap)'], 'label': 'amex_408'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051410': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051410', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051410', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['GLP1R (Hsap), ST18 (Hsap), TAC3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_409', 'Splat_409 neuron (Hsap)'], 'label': 'splat_409'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051411': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051411', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051411', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['AVP (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_410', 'Splat_410 neuron (Hsap)'], 'label': 'splat_410'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051412': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051412', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051412', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['PPP1R17 (Hsap), PDE3A (Hsap), RORB (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_411', 'Splat_411 neuron (Hsap)'], 'label': 'splat_411'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051413': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051413', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051413', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['ISL1 (Hsap), LEF1 (Hsap), RP11-964E11.3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_412', 'Splat_412 neuron (Hsap)'], 'label': 'splat_412'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051414': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051414', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051414', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['SIM1 (Hsap), PITX2 (Hsap), CTC-340A15.2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_413', 'Splat_413 neuron (Hsap)'], 'label': 'splat_413'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051415': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051415', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051415', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['SIM1 (Hsap), OTP (Hsap), RP11-964E11.3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_414', 'Splat_414 neuron (Hsap)'], 'label': 'splat_414'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051416': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051416', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051416', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['GNAS (Hsap), PEG10 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_415', 'Splat_415 neuron (Hsap)'], 'label': 'splat_415'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051417': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051417', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051417', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['ISL1 (Hsap), DIRAS3 (Hsap), HMX3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_416', 'Splat_416 neuron (Hsap)'], 'label': 'splat_416'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051418': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051418', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051418', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['ISL1 (Hsap), OTP (Hsap), DLK1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_417', 'Splat_417 neuron (Hsap)'], 'label': 'splat_417'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051419': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051419', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051419', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['FEZF1 (Hsap), RP11-964E11.3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_418', 'Splat_418 neuron (Hsap)'], 'label': 'splat_418'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051420': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051420', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051420', 'parent': 'http://purl.obolibrary.org/obo/CL_4023039', 'children': [], 'synonymLabels': ['Amex_419', 'NR2F2-AS1 (Hsap), PTH2R (Hsap), CTC-552D5.1 (Hsap), SCN5A (Hsap), CARM1P1 (Hsap) expressing amygdala excitatory neuron of brain (Homo sapiens)', 'Amex_419 amygdala excitatory neuron (Hsap)'], 'label': 'amex_419'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051421': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051421', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051421', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['Splat_420', 'ZIC1 (Hsap), OTP (Hsap), CTC-552D5.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_420 neuron (Hsap)'], 'label': 'splat_420'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051422': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051422', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051422', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['ESR1 (Hsap), STK32B (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_421', 'Splat_421 neuron (Hsap)'], 'label': 'splat_421'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051423': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051423', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051423', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LHX6 (Hsap), TMEM255A (Hsap), ADARB2 (Hsap), PEG10 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_422', 'Splat_422 neuron (Hsap)'], 'label': 'splat_422'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051424': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051424', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051424', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['SOX6 (Hsap), PROX1 (Hsap), TSHZ2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_423', 'Splat_423 neuron (Hsap)'], 'label': 'splat_423'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051425': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051425', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051425', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['LHX6 (Hsap), CYP19A1 (Hsap), ZBTB7C (Hsap), NR2F2 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_424', 'Splat_424 neuron (Hsap)'], 'label': 'splat_424'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051426': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051426', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051426', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['ESR1 (Hsap), LHX6 (Hsap), SATB1-AS1 (Hsap), NR2F2-AS1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_425', 'Splat_425 neuron (Hsap)'], 'label': 'splat_425'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051427': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051427', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051427', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['EMSN_426', 'MEIS1 (Hsap), TSHZ1 (Hsap), RP11-537P24.1 (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'EMSN_426 medium spiny neuron (Hsap)'], 'label': 'emsn_426'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051428': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051428', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051428', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['ISL1 (Hsap), GABRG1 (Hsap), CTC-552D5.1 (Hsap) expressing direct pathway medium spiny neuron of brain (Homo sapiens)', 'MSN_427', 'MSN_427 direct pathway medium spiny neuron (Hsap)'], 'label': 'msn_427'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051429': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051429', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051429', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['FREM2 (Hsap), STK32B (Hsap), RP11-649A16.1 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_428', 'Splat_428 neuron (Hsap)'], 'label': 'splat_428'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051430': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051430', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051430', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['PRDM16 (Hsap), FREM2 (Hsap), MYO5B (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_429', 'Splat_429 neuron (Hsap)'], 'label': 'splat_429'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051431': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051431', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051431', 'parent': 'http://purl.obolibrary.org/obo/CL_1001474', 'children': [], 'synonymLabels': ['GABRG1 (Hsap), PENK (Hsap) expressing medium spiny neuron of brain (Homo sapiens)', 'MSN_430', 'MSN_430 medium spiny neuron (Hsap)'], 'label': 'msn_430'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051432': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051432', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051432', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['PGR (Hsap), TBX3 (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_431', 'Splat_431 neuron (Hsap)'], 'label': 'splat_431'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051433': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051433', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051433', 'parent': 'http://purl.obolibrary.org/obo/CL_0000540', 'children': [], 'synonymLabels': ['HDC (Hsap) expressing neuron of brain (Homo sapiens)', 'Splat_432', 'Splat_432 neuron (Hsap)'], 'label': 'splat_432'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051434': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051434', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051434', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_433', 'PRSS12 (Hsap), HHIP (Hsap), RELN (Hsap), OTX2-AS1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_433 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_433'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051435': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051435', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051435', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_434', 'NPPC (Hsap), NPSR1-AS1 (Hsap), CTXN3 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_434 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_434'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051436': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051436', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051436', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['LTBP1 (Hsap), TRPC7 (Hsap), NPSR1 (Hsap), NR2F2-AS1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_435', 'Midi_435 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_435'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051437': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051437', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051437', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['BMPR1B (Hsap), HMCN1 (Hsap), OTX2-AS1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_436', 'Midi_436 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_436'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051438': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051438', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051438', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['BMPR1B (Hsap), RORB (Hsap), OTX2-AS1 (Hsap), CH17-174L20.1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_437', 'Midi_437 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_437'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051439': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051439', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051439', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_438', 'NPPC (Hsap), NPSR1 (Hsap), AC010091.1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_438 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_438'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051440': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051440', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051440', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_439', 'SEMA3C (Hsap), PRSS12 (Hsap), OTX2-AS1 (Hsap), LINC02055 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_439 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_439'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051441': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051441', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051441', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_440', 'MYO3B (Hsap), OTX2-AS1 (Hsap), LINC02055 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_440 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_440'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051442': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051442', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051442', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_441', 'MYO3B (Hsap), PLEKHH2 (Hsap), CRNDE (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_441 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_441'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051443': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051443', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051443', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['CASR (Hsap), TSPAN12 (Hsap), NPSR1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_442', 'Midi_442 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_442'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051444': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051444', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051444', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_443', 'VASH2 (Hsap), NPPC (Hsap), OTX2-AS1 (Hsap), LINC02552 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_443 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_443'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051445': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051445', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051445', 'parent': 'http://purl.obolibrary.org/obo/CL_4023079', 'children': [], 'synonymLabels': ['Midi_444', 'SYT2 (Hsap), PLEKHH2 (Hsap), LINC02552 (Hsap), SEMA3C (Hsap), OTX2-AS1 (Hsap) expressing midbrain-derived inhibitory neuron of brain (Homo sapiens)', 'Midi_444 midbrain-derived inhibitory neuron (Hsap)'], 'label': 'midi_444'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051446': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051446', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051446', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['MAP3K20 (Hsap), KCNH8 (Hsap), RP11-354K4.2 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_445', 'Thex_445 thalamic excitatory neuron (Hsap)'], 'label': 'thex_445'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051447': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051447', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051447', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['DCDC2C (Hsap), RP11-354K4.2 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_446', 'Thex_446 thalamic excitatory neuron (Hsap)'], 'label': 'thex_446'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051448': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051448', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051448', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['ST8SIA6 (Hsap), TGFBR2 (Hsap), KCNH8 (Hsap), LINC01695 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_447', 'Thex_447 thalamic excitatory neuron (Hsap)'], 'label': 'thex_447'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051449': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051449', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051449', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['ETV1 (Hsap), NDRG1 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_448', 'Thex_448 thalamic excitatory neuron (Hsap)'], 'label': 'thex_448'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051450': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051450', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051450', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['CASQ2 (Hsap), NTS (Hsap), EDNRB (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_449', 'Thex_449 thalamic excitatory neuron (Hsap)'], 'label': 'thex_449'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051451': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051451', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051451', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['CASQ2 (Hsap), ADAMTS12 (Hsap), AC092684.1 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_450', 'Thex_450 thalamic excitatory neuron (Hsap)'], 'label': 'thex_450'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051452': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051452', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051452', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['CASQ2 (Hsap), CD226 (Hsap), AC092684.1 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_451', 'Thex_451 thalamic excitatory neuron (Hsap)'], 'label': 'thex_451'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051453': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051453', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051453', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['ITM2A (Hsap), PVALB (Hsap), HPSE2 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_452', 'Thex_452 thalamic excitatory neuron (Hsap)'], 'label': 'thex_452'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051454': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051454', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051454', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['RGS16 (Hsap), CARTPT (Hsap), PNOC (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_453', 'Thex_453 thalamic excitatory neuron (Hsap)'], 'label': 'thex_453'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051455': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051455', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051455', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['TAFA4 (Hsap), AP000331.1 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_454', 'Thex_454 thalamic excitatory neuron (Hsap)'], 'label': 'thex_454'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051456': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051456', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051456', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['FSHR (Hsap), LINC01151 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_455', 'Thex_455 thalamic excitatory neuron (Hsap)'], 'label': 'thex_455'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051457': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051457', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051457', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['ST8SIA6 (Hsap), TCF7L2 (Hsap), BMP6 (Hsap), LINC02296 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_456', 'Thex_456 thalamic excitatory neuron (Hsap)'], 'label': 'thex_456'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051458': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051458', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051458', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['FAM163A (Hsap), LINC01036 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_457', 'Thex_457 thalamic excitatory neuron (Hsap)'], 'label': 'thex_457'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051459': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051459', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051459', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['NTS (Hsap), RGS16 (Hsap), LINC01320 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_458', 'Thex_458 thalamic excitatory neuron (Hsap)'], 'label': 'thex_458'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051460': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051460', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051460', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['MCUB (Hsap), SLITRK6 (Hsap), RNF220 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_459', 'Thex_459 thalamic excitatory neuron (Hsap)'], 'label': 'thex_459'}),\n",
      "  'http://purl.obolibrary.org/obo/PCL_0051461': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'http://purl.obolibrary.org/obo/PCL_0051461', '@type': 'OntologyTreeNode', 'id': 'http://purl.obolibrary.org/obo/PCL_0051461', 'parent': 'http://purl.obolibrary.org/obo/CL_4023068', 'children': [], 'synonymLabels': ['DMRTA1 (Hsap), LINC01239 (Hsap) expressing thalamic excitatory neuron of brain (Homo sapiens)', 'Thex_460', 'Thex_460 thalamic excitatory neuron (Hsap)'], 'label': 'thex_460'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_a8-bistratified-small-field-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_a8-bistratified-small-field-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_a8-bistratified-small-field-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_4030028', 'children': [], 'synonymLabels': [], 'label': 'a8 bistratified small-field cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_adventitial-stromal-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_adventitial-stromal-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_adventitial-stromal-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'adventitial stromal cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_b-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_b-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_b-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'b cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-bladder-urothelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-bladder-urothelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-bladder-urothelium', 'parent': 'http://purl.obolibrary.org/obo/CL_1001428', 'children': [], 'synonymLabels': [], 'label': 'basal cell of bladder urothelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-prostatic-urethra': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-prostatic-urethra', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-prostatic-urethra', 'parent': 'http://purl.obolibrary.org/obo/CL_1000486', 'children': [], 'synonymLabels': [], 'label': 'basal cell of prostatic urethra'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-ureter-urothelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-ureter-urothelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_basal-cell-of-ureter-urothelium', 'parent': 'http://purl.obolibrary.org/obo/CL_1001428', 'children': [], 'synonymLabels': [], 'label': 'basal cell of ureter urothelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bche-butyrylcholinesterase-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bche-butyrylcholinesterase-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bche-butyrylcholinesterase-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'bche (butyrylcholinesterase) cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_bgl51': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_bgl51', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_bgl51', 'parent': 'http://purl.obolibrary.org/obo/CL_0000644', 'children': [], 'synonymLabels': [], 'label': 'bgl_51'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_capsule-mesenchymal-stromal-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000499', 'children': [], 'synonymLabels': [], 'label': 'capsule mesenchymal stromal cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_catecholaminergic-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_catecholaminergic-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_catecholaminergic-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'catecholaminergic neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cd4-t': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cd4-t', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cd4-t', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'cd4+ t'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cd8-t': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cd8-t', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cd8-t', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'cd8+ t'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-cgrp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-cgrp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-cgrp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'celiac ganglion cgrp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-phi-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-phi-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-phi-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'celiac ganglion phi neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-cgrp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-cgrp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-cgrp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'celiac ganglion som/cgrp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-som-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'celiac ganglion som neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-sp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-sp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-sp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'celiac ganglion sp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_celiac-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'celiac ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_centroblast': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_centroblast', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_centroblast', 'parent': 'http://purl.obolibrary.org/obo/CL_0000236', 'children': [], 'synonymLabels': [], 'label': 'centroblast'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-enkephalin-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-enkephalin-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-enkephalin-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'cervicothoracic ganglion enkephalin neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'cervicothoracic ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-th-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'cervicothoracic ganglion th/npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vacht-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vacht-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vacht-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'cervicothoracic ganglion vacht neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cervicothoracic-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'cervicothoracic ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'ciliary ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-vip-phi-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-vip-phi-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ciliary-ganglion-vip-phi-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'ciliary ganglion vip-phi neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ciliated-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ciliated-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ciliated-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'ciliated epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_columnar-ovarian-surface-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_columnar-ovarian-surface-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_columnar-ovarian-surface-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'columnar ovarian surface epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-endothelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-endothelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-endothelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'corpus luteum endothelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-macrophage': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-macrophage', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_corpus-luteum-macrophage', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'corpus luteum macrophage'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cuboidal-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cuboidal-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cuboidal-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_1001433', 'children': [], 'synonymLabels': [], 'label': 'cuboidal cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cycling-b': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cycling-b', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cycling-b', 'parent': 'http://purl.obolibrary.org/obo/CL_0000236', 'children': [], 'synonymLabels': [], 'label': 'cycling b'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_cytotoxic-memory-t-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_cytotoxic-memory-t-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_cytotoxic-memory-t-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'cytotoxic memory t cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dec205-dc': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dec205-dc', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dec205-dc', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'dec205+ dc'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_0002597', 'children': [], 'synonymLabels': [], 'label': 'detrusor smooth muscle cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_detrusor-smooth-muscle-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'detrusor smooth muscle cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_1001319', 'children': [], 'synonymLabels': [], 'label': 'dpt+ fibroblast cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_dpt-fibroblast-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000308', 'children': [], 'synonymLabels': [], 'label': 'dpt+ fibroblast cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_effector-chondrocyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_effector-chondrocyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_effector-chondrocyte', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'effector chondrocyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_endocervical-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_endocervical-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_endocervical-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'endocervical epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'endothelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_2000040', 'children': [], 'synonymLabels': [], 'label': 'endothelial cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_endothelial-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000708', 'children': [], 'synonymLabels': [], 'label': 'endothelial cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_eomes-low-liver-nk-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_eomes-low-liver-nk-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_eomes-low-liver-nk-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000623', 'children': [], 'synonymLabels': [], 'label': 'eomes low liver nk cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_epithelial-stem-cells': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_epithelial-stem-cells', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_epithelial-stem-cells', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'epithelial stem cells'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fibroblast-mesenchymal-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fibroblast-mesenchymal-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fibroblast-mesenchymal-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'fibroblast-mesenchymal cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-1': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-1', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-1', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'fibrocartilage chondrocyte 1'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_fibrocartilage-chondrocyte-2', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'fibrocartilage chondrocyte 2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_flattened-cuboidal-ovarian-surface-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_flattened-cuboidal-ovarian-surface-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_flattened-cuboidal-ovarian-surface-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'flattened cuboidal ovarian surface epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ganglion': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ganglion', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ganglion', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'ganglion'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_germinal-center-b-cell-cd21': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_germinal-center-b-cell-cd21', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_germinal-center-b-cell-cd21', 'parent': 'http://purl.obolibrary.org/obo/CL_0000844', 'children': [], 'synonymLabels': [], 'label': 'germinal center b cell cd21'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_glandular-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_glandular-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_glandular-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'glandular epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_glial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_glial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_glial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'glial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_glutamic-acid-decarboxylase-65-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_glutamic-acid-decarboxylase-65-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_glutamic-acid-decarboxylase-65-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0011005', 'children': [], 'synonymLabels': [], 'label': 'glutamic acid decarboxylase 65 cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_homeostatic-chodrocyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_homeostatic-chodrocyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_homeostatic-chodrocyte', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'homeostatic chodrocyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-sp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-sp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-sp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'inferior mesenteric ganglion sp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_inferior-mesenteric-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'inferior mesenteric ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_innate-lymphoid-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_innate-lymphoid-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_innate-lymphoid-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'innate lymphoid cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_interdigitating-dendritic-cells': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_interdigitating-dendritic-cells', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_interdigitating-dendritic-cells', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'interdigitating dendritic cells'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-bladder-urothelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-bladder-urothelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-bladder-urothelium', 'parent': 'http://purl.obolibrary.org/obo/CL_1001428', 'children': [], 'synonymLabels': [], 'label': 'intermediate cell of bladder urothelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-ureter-urothelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-ureter-urothelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intermediate-cell-of-ureter-urothelium', 'parent': 'http://purl.obolibrary.org/obo/CL_1001428', 'children': [], 'synonymLabels': [], 'label': 'intermediate cell of ureter urothelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_intrinsic-cardiac-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-cardiac-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_intrinsic-cardiac-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'intrinsic cardiac ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ionocyte-epithelia': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ionocyte-epithelia', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ionocyte-epithelia', 'parent': 'http://purl.obolibrary.org/obo/CL_0005006', 'children': [], 'synonymLabels': [], 'label': 'ionocyte epithelia'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_limbal-stem-cells': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_limbal-stem-cells', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_limbal-stem-cells', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'limbal stem cells'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_1001319', 'children': [], 'synonymLabels': [], 'label': 'lipofibroblast cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lipofibroblast-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000708', 'children': [], 'synonymLabels': [], 'label': 'lipofibroblast cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_low-columnar-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_low-columnar-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_low-columnar-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_1001433', 'children': [], 'synonymLabels': [], 'label': 'low columnar cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lower-airway-ganglion-chat-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lower-airway-ganglion-chat-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lower-airway-ganglion-chat-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'lower airway ganglion chat/vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'lumbar ganglion npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-sst-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-sst-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-sst-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'lumbar ganglion sst/th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'lumbar ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-th-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'lumbar ganglion th/npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lumbar-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'lumbar ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_luminal-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_luminal-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_luminal-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'luminal epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatic': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatic', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lymphatic'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphatics': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatics', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphatics', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lymphatics'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_lymphocyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_lymphocyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_lymphocyte', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'lymphocyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_macrophage': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_macrophage', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_macrophage', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'macrophage'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mantle-zone-b-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mantle-zone-b-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mantle-zone-b-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'mantle zone b cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mast-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mast-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mast-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'mast cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-dbh-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-dbh-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-dbh-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'middle cervical ganglion dbh neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'middle cervical ganglion npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'middle cervical ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-th-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'middle cervical ganglion th/npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_middle-cervical-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'middle cervical ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_monocyte-derived-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_monocyte-derived-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_monocyte-derived-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000113', 'children': [], 'synonymLabels': [], 'label': 'monocyte derived cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_mural-granulosa-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_mural-granulosa-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_mural-granulosa-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'mural granulosa cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_muscle': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_muscle', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_muscle', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'muscle'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-calr-som-sp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-calr-som-sp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-calr-som-sp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion chat/calr/som/sp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-chat-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion chat neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nf200-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nf200-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nf200-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion nf200 neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-chat-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-chat-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-chat-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion nnos/chat neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion nnos neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-nnos-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion nnos/vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-gal-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-gal-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-gal-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion vip/gal neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myenteric-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'myenteric ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_1001319', 'children': [], 'synonymLabels': [], 'label': 'myofibroblast cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_myofibroblast-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000708', 'children': [], 'synonymLabels': [], 'label': 'myofibroblast cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerve': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerve', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerve', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'nerve'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_nerves': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_nerves', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_nerves', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'nerves'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-nnos-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-nnos-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-nnos-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'otic ganglion nnos neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_otic-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'otic ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_ovarian-nerve-plexus-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_ovarian-nerve-plexus-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_ovarian-nerve-plexus-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'ovarian nerve plexus ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion nnos neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vacht-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vacht-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vacht-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion nnos/vacht neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-nnos-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion nnos/vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-npy-vacht-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-npy-vacht-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-npy-vacht-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion npy/vacht neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-dbh-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-dbh-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-dbh-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion th/dbh neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-vacht-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-vacht-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pelvic-ganglion-vacht-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pelvic ganglion vacht neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pericryptal-fibroblastic-sheath': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pericryptal-fibroblastic-sheath', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pericryptal-fibroblastic-sheath', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'pericryptal fibroblastic sheath'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_0002597', 'children': [], 'synonymLabels': [], 'label': 'pericyte cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pericyte-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000708', 'children': [], 'synonymLabels': [], 'label': 'pericyte cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_perivascular-support-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_perivascular-support-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_perivascular-support-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'perivascular support cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_1001319', 'children': [], 'synonymLabels': [], 'label': 'pi16+ fibroblast cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pi16-fibroblast-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000308', 'children': [], 'synonymLabels': [], 'label': 'pi16+ fibroblast cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_plasma-cell-cd21': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_plasma-cell-cd21', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_plasma-cell-cd21', 'parent': 'http://purl.obolibrary.org/obo/CL_0000786', 'children': [], 'synonymLabels': [], 'label': 'plasma cell cd21'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000561', 'children': ['http://purl.obolibrary.org/obo/CL_0004219', 'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-1-cell', 'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-3-cell'], 'synonymLabels': [], 'label': 'polyaxonal amacrine cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pre-antral-follicle-granulosa-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pre-antral-follicle-granulosa-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pre-antral-follicle-granulosa-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'pre-antral follicle granulosa cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_prefibrocartilage-chondrocyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_prefibrocartilage-chondrocyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_prefibrocartilage-chondrocyte', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'prefibrocartilage chondrocyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_prehypertrophic-chondrocyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_prehypertrophic-chondrocyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_prehypertrophic-chondrocyte', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'prehypertrophic chondrocyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-nnos-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-nnos-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-nnos-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pterygopalatine ganglion nnos neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pterygopalatine ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-phi-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-phi-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_pterygopalatine-ganglion-vip-phi-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'pterygopalatine ganglion vip/phi neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_regulatory-cd4-t': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_regulatory-cd4-t', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_regulatory-cd4-t', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'regulatory cd4+ t'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-1': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-1', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-1', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'regulatory chondrocyte 1'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-2': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-2', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_regulatory-chondrocyte-2', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'regulatory chondrocyte 2'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_reparative-chondrocyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_reparative-chondrocyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_reparative-chondrocyte', 'parent': 'http://purl.obolibrary.org/obo/CL_1001607', 'children': [], 'synonymLabels': [], 'label': 'reparative chondrocyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_reticular-cell-of-splenic-sinusoid': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_reticular-cell-of-splenic-sinusoid', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_reticular-cell-of-splenic-sinusoid', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'reticular cell of splenic sinusoid'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sacral-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sacral-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'sacral ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_semilunar-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_semilunar-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_semilunar-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0004219', 'children': [], 'synonymLabels': [], 'label': 'semilunar cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-1-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-1-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-1-cell', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell', 'children': [], 'synonymLabels': [], 'label': 'semilunar type 1 cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-3-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-3-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_semilunar-type-3-cell', 'parent': 'https://purl.org/ccf/ASCTB-TEMP_polyaxonal-amacrine-cell', 'children': [], 'synonymLabels': [], 'label': 'semilunar type 3 cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_sox9-epithelial-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_sox9-epithelial-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_sox9-epithelial-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'sox9+ epithelial cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-littoral-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-littoral-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-littoral-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic littoral cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-pericyte': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-pericyte', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-pericyte', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic pericyte'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-perifollicular-zone-macrophage': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-perifollicular-zone-macrophage', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-perifollicular-zone-macrophage', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic perifollicular zone macrophage'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stromal-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stromal-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-red-pulp-stromal-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic red pulp stromal cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-smooth-muscle-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-smooth-muscle-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-smooth-muscle-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic smooth muscle cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_splenic-stromal-sheath-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-stromal-sheath-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_splenic-stromal-sheath-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'splenic stromal sheath cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stroma-type-i-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-i-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-i-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'stroma type i cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stroma-type-ii-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-ii-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-ii-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'stroma type ii cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iii-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iii-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iii-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'stroma type iii cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iv-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iv-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-iv-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'stroma type iv cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stroma-type-v-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-v-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stroma-type-v-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'stroma type v cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_stromal-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_stromal-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_stromal-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'stromal cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subcapsular-dendritic-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subcapsular-dendritic-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subcapsular-dendritic-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'subcapsular dendritic cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_subepithelial-membrane': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_subepithelial-membrane', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_subepithelial-membrane', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'subepithelial membrane'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-nnos-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-nnos-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-nnos-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'submandibular ganglion nnos neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-th-cholinergic-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-th-cholinergic-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-th-cholinergic-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'submandibular ganglion th cholinergic neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-vip-phi-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-vip-phi-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_submandibular-ganglion-vip-phi-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'submandibular ganglion vip/phi neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-bladder-urothelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-bladder-urothelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-bladder-urothelium', 'parent': 'http://purl.obolibrary.org/obo/CL_1001428', 'children': [], 'synonymLabels': [], 'label': 'superficial cell of bladder urothelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-ureter-urothelium': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-ureter-urothelium', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superficial-cell-of-ureter-urothelium', 'parent': 'http://purl.obolibrary.org/obo/CL_1001428', 'children': [], 'synonymLabels': [], 'label': 'superficial cell of ureter urothelium'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-cgrp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-cgrp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-cgrp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion cgrp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-sst-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-sst-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-sst-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion sst neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-dbh-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-dbh-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-dbh-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion th/dbh neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-th-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion th/npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-vip-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-vip-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-cervical-ganglion-vip-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior cervical ganglion vip neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_superior-mesenteric-ganglion-sp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_superior-mesenteric-ganglion-sp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_superior-mesenteric-ganglion-sp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'superior mesenteric ganglion sp neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_t-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_t-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_t-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 't cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_tbet-low-liver-nk-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_tbet-low-liver-nk-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_tbet-low-liver-nk-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000623', 'children': [], 'synonymLabels': [], 'label': 'tbet low liver nk cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-enkephalin-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-enkephalin-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-enkephalin-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'thoracic ganglion enkephalin neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'thoracic ganglion th neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-npy-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-npy-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_thoracic-ganglion-th-npy-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_0011103', 'children': [], 'synonymLabels': [], 'label': 'thoracic ganglion th/npy neuron'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_transitional-principal-intercalated-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_transitional-principal-intercalated-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_transitional-principal-intercalated-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_1000454', 'children': [], 'synonymLabels': [], 'label': 'transitional principal-intercalated cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_uterine-dendritic-cells': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-dendritic-cells', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-dendritic-cells', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'uterine dendritic cells'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_uterine-natural-killer-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-natural-killer-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-natural-killer-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'uterine natural killer cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-i-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-i-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-i-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'uterine smooth muscle type i cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-ii-cell': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-ii-cell', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_uterine-smooth-muscle-type-ii-cell', 'parent': 'http://purl.obolibrary.org/obo/CL_0000000', 'children': [], 'synonymLabels': [], 'label': 'uterine smooth muscle type ii cell'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-bladder': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-bladder', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-bladder', 'parent': 'http://purl.obolibrary.org/obo/CL_0002597', 'children': [], 'synonymLabels': [], 'label': 'vascular smooth muscle cell of bladder'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-ureter': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-ureter', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vascular-smooth-muscle-cell-of-ureter', 'parent': 'http://purl.obolibrary.org/obo/CL_1000708', 'children': [], 'synonymLabels': [], 'label': 'vascular smooth muscle cell of ureter'}),\n",
      "  'https://purl.org/ccf/ASCTB-TEMP_vestibular-ganglion-sp-neuron': OntologyTreeNode(id=None, label=None, synonym_labels=None, parent=None, children=None, additional_properties={'@id': 'https://purl.org/ccf/ASCTB-TEMP_vestibular-ganglion-sp-neuron', '@type': 'OntologyTreeNode', 'id': 'https://purl.org/ccf/ASCTB-TEMP_vestibular-ganglion-sp-neuron', 'parent': 'http://purl.obolibrary.org/obo/CL_2000032', 'children': [], 'synonymLabels': [], 'label': 'vestibular ganglion sp neuron'})})\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.cell_type_tree_model(cache = False)\n",
    "    for item in api_response:\n",
    "        pprint(item)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "0965c71e",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='providers'></a>\n",
    "#### Get tissue provider names (for filtering)\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional)\n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "5ff1a305",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "['Allen Institute',\n",
      " 'Broad Institute',\n",
      " 'CIR/UEdinburgh',\n",
      " 'GTEx',\n",
      " 'GUDMAP',\n",
      " 'HTAN',\n",
      " 'IsletCore',\n",
      " 'KPMP-IU/OSU',\n",
      " 'NHLBI/LungMap',\n",
      " 'NIH',\n",
      " 'RBK',\n",
      " 'RTI-General Electric',\n",
      " 'TMC-CalTech',\n",
      " 'TMC-Florida',\n",
      " 'TMC-Stanford',\n",
      " 'TMC-UCSD',\n",
      " 'TMC-UConn',\n",
      " 'TMC-Vanderbilt',\n",
      " 'UCLA/SPARC',\n",
      " 'UConn Health TMC',\n",
      " 'UIowa',\n",
      " 'UT Southwestern/GUDMAP',\n",
      " 'University of California San Diego TMC',\n",
      " 'University of Pittsburgh TMC',\n",
      " 'Washington University TMC',\n",
      " 'Wellcome Sanger Institute']\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.provider_names(cache = True)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "1537015d",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='ref_organs'></a>\n",
    "#### Get all reference organs\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional)\n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "eeaf481b",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004537', reference_organ='https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=192.7564, y_dimension=799.2176, z_dimension=184.9262, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_blood_vasculature', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/blood-vasculature-female/v1.3/assets/3d-vh-f-blood-vasculature.glb'}, 'rui_rank': 20, 'label': 'blood vasculature'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004537', reference_organ='https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=236.1989, y_dimension=871.8366, z_dimension=187.4264, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_blood_vasculature', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/blood-vasculature-male/v1.3/assets/3d-vh-m-blood-vasculature.glb'}, 'rui_rank': 20, 'label': 'blood vasculature'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000955', reference_organ='https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=136.3772, y_dimension=146.0959, z_dimension=167.0395, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'Allen_brain', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/brain-female/v1.4/assets/3d-allen-f-brain.glb'}, 'rui_rank': 20, 'label': 'brain'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000955', reference_organ='https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=136.3772, y_dimension=146.0959, z_dimension=167.0395, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'Allen_brain', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/brain-male/v1.4/assets/3d-allen-m-brain.glb'}, 'rui_rank': 20, 'label': 'brain'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004548', reference_organ='https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=24.45606, y_dimension=24.41207, z_dimension=25.74836, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_eye_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-female-left/v1.3/assets/3d-vh-f-eye-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left eye'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004549', reference_organ='https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=24.45605, y_dimension=24.4121, z_dimension=25.74836, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_eye_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-female-right/v1.3/assets/3d-vh-f-eye-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right eye'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004548', reference_organ='https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=24.45605, y_dimension=24.41204, z_dimension=25.74836, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_eye_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-male-left/v1.3/assets/3d-vh-m-eye-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left eye'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004549', reference_organ='https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=24.45605, y_dimension=24.4121, z_dimension=25.74836, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_eye_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-male-right/v1.3/assets/3d-vh-m-eye-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right eye'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001303', reference_organ='https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=38.62301, y_dimension=44.47168, z_dimension=18.54973, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_fallopian_tube_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/fallopian-tube-female-left/v1.2/assets/3d-vh-f-fallopian-tube-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left fallopian tube'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001302', reference_organ='https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=34.41202, y_dimension=44.60348, z_dimension=20.87175, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_fallopian_tube_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/fallopian-tube-female-right/v1.2/assets/3d-vh-f-fallopian-tube-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right fallopian tube'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000948', reference_organ='https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=142.5422, y_dimension=109.985, z_dimension=101.4974, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_heart', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/heart-female/v1.3/assets/3d-vh-f-heart.glb'}, 'rui_rank': 20, 'label': 'heart'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000948', reference_organ='https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=124.3512, y_dimension=105.4352, z_dimension=105.2152, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_heart', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/heart-male/v1.3/assets/3d-vh-m-heart.glb'}, 'rui_rank': 20, 'label': 'heart'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004538', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=73.11072, y_dimension=124.8564, z_dimension=77.57955, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_left_kidney', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-left/v1.3/assets/3d-vh-f-kidney-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left kidney'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=73.39071, y_dimension=97.8547, z_dimension=69.54016, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_right_kidney', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-right/v1.3/assets/3d-vh-f-kidney-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right kidney'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004538', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=75.71038, y_dimension=106.548, z_dimension=82.43029, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_left_kidney', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-male-left/v1.3/assets/3d-vh-m-kidney-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left kidney'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=65.49603, y_dimension=112.5346, z_dimension=76.35381, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_right_kidney', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-male-right/v1.3/assets/3d-vh-m-kidney-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right kidney'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24978', reference_organ='https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=101.6387, y_dimension=771.7859, z_dimension=110.4775, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_knee_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-female-left/v1.2/assets/3d-vh-f-knee-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left knee'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24977', reference_organ='https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=101.6387, y_dimension=771.7859, z_dimension=110.4775, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_knee_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-female-right/v1.2/assets/3d-vh-f-knee-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right knee'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24978', reference_organ='https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=173.4161, y_dimension=887.4633, z_dimension=164.5555, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_knee_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-male-left/v1.2/assets/3d-vh-m-knee-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left knee'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24977', reference_organ='https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=173.4161, y_dimension=887.4634, z_dimension=164.5555, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_knee_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-male-right/v1.2/assets/3d-vh-m-knee-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right knee'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000059', reference_organ='https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=243.2758, y_dimension=294.9472, z_dimension=193.4179, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_colon', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/large-intestine-female/v1.3/assets/3d-sbu-f-large-intestine.glb'}, 'rui_rank': 20, 'label': 'large intestine'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000059', reference_organ='https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=259.126, y_dimension=450.3009, z_dimension=224.8441, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_colon', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/large-intestine-male/v1.3/assets/3d-sbu-m-large-intestine.glb'}, 'rui_rank': 20, 'label': 'large intestine'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001737', reference_organ='https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=46.46055, y_dimension=60.3785, z_dimension=40.06126, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_larynx', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/larynx-female/v1.1/assets/3d-vh-f-larynx.glb'}, 'rui_rank': 20, 'label': 'larynx'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001737', reference_organ='https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=53.75308, y_dimension=72.6234, z_dimension=38.62831, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_larynx', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/larynx-male/v1.1/assets/3d-vh-m-larynx.glb'}, 'rui_rank': 20, 'label': 'larynx'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002107', reference_organ='https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=247.1075, y_dimension=169.9727, z_dimension=166.2769, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_liver', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/liver-female/v1.2/assets/3d-vh-f-liver.glb'}, 'rui_rank': 20, 'label': 'liver'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002107', reference_organ='https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=191.3676, y_dimension=174.5545, z_dimension=201.7568, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_liver', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/liver-male/v1.2/assets/3d-vh-m-liver.glb'}, 'rui_rank': 20, 'label': 'liver'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001004', reference_organ='https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=251.1347, y_dimension=223.0362, z_dimension=152.6049, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_respiratory_system', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lung-female/v1.4/assets/3d-vh-f-lung.glb'}, 'rui_rank': 20, 'label': 'lung'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001004', reference_organ='https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=259.4186, y_dimension=229.1373, z_dimension=189.7135, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_respiratory_system', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lung-male/v1.4/assets/3d-vh-m-lung.glb'}, 'rui_rank': 20, 'label': 'lung'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002509', reference_organ='https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=19.6316, y_dimension=11.33335, z_dimension=12.51293, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'Yao_lymph_node', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lymph-node-female/v1.3/assets/3d-nih-f-lymph-node.glb'}, 'rui_rank': 20, 'label': 'lymph node'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002509', reference_organ='https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=18.31827, y_dimension=10.67266, z_dimension=12.96696, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'Yao_lymph_node', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lymph-node-male/v1.3/assets/3d-nih-m-lymph-node.glb'}, 'rui_rank': 20, 'label': 'lymph node'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002182', reference_organ='https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=92.81348, y_dimension=54.63247, z_dimension=31.08854, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_main_bronchi', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/main-bronchus-female/v1.1/assets/3d-vh-f-main-bronchus.glb'}, 'rui_rank': 20, 'label': 'main bronchus'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002182', reference_organ='https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=74.72315, y_dimension=44.2475, z_dimension=27.5188, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_main_bronchi', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/main-bronchus-male/v1.1/assets/3d-vh-m-main-bronchus.glb'}, 'rui_rank': 20, 'label': 'main bronchus'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma57991', reference_organ='https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=128.1592, y_dimension=181.8663, z_dimension=111.856, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_mammary_gland_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/mammary-gland-female-left/v1.1/assets/3d-vh-f-mammary-gland-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left mammary gland'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma57987', reference_organ='https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=128.309, y_dimension=180.0037, z_dimension=113.1893, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_mammary_gland_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/mammary-gland-female-right/v1.1/assets/3d-vh-f-mammary-gland-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right mammary gland'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma7214', reference_organ='https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=12.2774, y_dimension=23.94699, z_dimension=10.53417, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_left_ovary', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ovary-female-left/v1.2/assets/3d-vh-f-ovary-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left ovary'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma7213', reference_organ='https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=12.30968, y_dimension=23.98689, z_dimension=10.62752, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_right_ovary', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ovary-female-right/v1.2/assets/3d-vh-f-ovary-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right ovary'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54974', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=16.3459, y_dimension=24.28356, z_dimension=15.92823, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_palatine_tonsil_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-female-left/v1.1/assets/3d-vh-f-palatine-tonsil-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left palatine tonsil'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54973', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=16.79244, y_dimension=23.91926, z_dimension=13.94045, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_palatine_tonsil_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-female-right/v1.1/assets/3d-vh-f-palatine-tonsil-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right palatine tonsil'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54974', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=16.3459, y_dimension=24.28359, z_dimension=15.92823, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_palatine_tonsil_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-male-left/v1.1/assets/3d-vh-m-palatine-tonsil-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left palatine tonsil'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54973', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=16.79244, y_dimension=23.9193, z_dimension=13.94045, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_palatine_tonsil_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-male-right/v1.1/assets/3d-vh-m-palatine-tonsil-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right palatine tonsil'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001264', reference_organ='https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=172.0317, y_dimension=56.53839, z_dimension=84.37345, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_pancreas', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pancreas-female/v1.3/assets/3d-vh-f-pancreas.glb'}, 'rui_rank': 20, 'label': 'pancreas'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001264', reference_organ='https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=111.4339, y_dimension=72.0121, z_dimension=83.61521, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_pancreas', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pancreas-male/v1.3/assets/3d-vh-m-pancreas.glb'}, 'rui_rank': 20, 'label': 'pancreas'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001270', reference_organ='https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=316.8379, y_dimension=211.4929, z_dimension=182.7445, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_pelvis', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pelvis-female/v1.3/assets/3d-vh-f-pelvis.glb'}, 'rui_rank': 20, 'label': 'pelvis'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001270', reference_organ='https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=283.5303, y_dimension=218.4856, z_dimension=172.8464, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_pelvis', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pelvis-male/v1.3/assets/3d-vh-m-pelvis.glb'}, 'rui_rank': 20, 'label': 'pelvis'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001987', reference_organ='https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=250.8973, y_dimension=230.5373, z_dimension=133.7828, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_placenta', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/placenta-full-term-female/v1.1/assets/3d-vh-f-placenta-full-term.glb'}, 'rui_rank': 20, 'label': 'placenta full term'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000079', reference_organ='https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=82.97119, y_dimension=70.60566, z_dimension=42.84868, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_male_reproductive_system', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/prostate-male/v1.2/assets/3d-vh-m-prostate.glb'}, 'rui_rank': 20, 'label': 'prostate'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002097', reference_organ='https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=967.4421, y_dimension=1666.348, z_dimension=329.2865, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_skin', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/skin-female/v1.4/assets/3d-vh-f-skin.glb'}, 'rui_rank': 10, 'label': 'skin'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002097', reference_organ='https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=1046.591, y_dimension=1829.519, z_dimension=316.2237, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_skin', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/skin-male/v1.3/assets/3d-vh-m-skin.glb'}, 'rui_rank': 10, 'label': 'skin'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002108', reference_organ='https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=161.5715, y_dimension=217.2327, z_dimension=99.99375, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_small_intestine', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/small-intestine-female/v1.2/assets/3d-vh-f-small-intestine.glb'}, 'rui_rank': 20, 'label': 'small intestine'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002108', reference_organ='https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=187.9823, y_dimension=265.3713, z_dimension=122.163, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_small_intestine', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/small-intestine-male/v1.2/assets/3d-vh-m-small-intestine.glb'}, 'rui_rank': 20, 'label': 'small intestine'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002240', reference_organ='https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=17.90012, y_dimension=408.821, z_dimension=81.90028, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_spinal_cord', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spinal-cord-female/v1.1/assets/3d-vh-f-spinal-cord.glb'}, 'rui_rank': 20, 'label': 'spinal cord'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002240', reference_organ='https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=20.70904, y_dimension=465.1833, z_dimension=79.63502, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_spinal_cord', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spinal-cord-male/v1.1/assets/3d-vh-m-spinal-cord.glb'}, 'rui_rank': 20, 'label': 'spinal cord'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002106', reference_organ='https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=89.56065, y_dimension=102.3151, z_dimension=70.9412, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_spleen', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spleen-female/v1.3/assets/3d-vh-f-spleen.glb'}, 'rui_rank': 20, 'label': 'spleen'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002106', reference_organ='https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=110.4076, y_dimension=118.6376, z_dimension=88.63269, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_spleen', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spleen-male/v1.3/assets/3d-vh-m-spleen.glb'}, 'rui_rank': 20, 'label': 'spleen'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002370', reference_organ='https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=86.03341, y_dimension=123.5696, z_dimension=53.76292, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_thymus', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/thymus-female/v1.3/assets/3d-vh-f-thymus.glb'}, 'rui_rank': 20, 'label': 'thymus'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002370', reference_organ='https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=36.99985, y_dimension=75.6887, z_dimension=35.07913, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_thymus', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/thymus-male/v1.3/assets/3d-vh-m-thymus.glb'}, 'rui_rank': 20, 'label': 'thymus'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0003126', reference_organ='https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=24.30157, y_dimension=107.9076, z_dimension=76.60429, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_trachea', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/trachea-female/v1.1/assets/3d-vh-f-trachea.glb'}, 'rui_rank': 20, 'label': 'trachea'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0003126', reference_organ='https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=28.71847, y_dimension=125.1206, z_dimension=67.22983, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_trachea', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/trachea-male/v1.1/assets/3d-vh-m-trachea.glb'}, 'rui_rank': 20, 'label': 'trachea'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001223', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=53.46834, y_dimension=219.6515, z_dimension=36.71687, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_left_ureter', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-female-left/v1.2/assets/3d-vh-f-ureter-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left ureter'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001222', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=35.29751, y_dimension=224.3438, z_dimension=35.68346, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_right_ureter', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-female-right/v1.2/assets/3d-vh-f-ureter-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right ureter'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001223', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=40.37935, y_dimension=255.9731, z_dimension=50.44415, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_ureter_L', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-male-left/v1.2/assets/3d-vh-m-ureter-l.glb'}, 'side': 'Left', 'rui_rank': 20, 'label': 'Left ureter'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001222', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=36.64105, y_dimension=223.2361, z_dimension=51.73808, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_ureter_R', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-male-right/v1.2/assets/3d-vh-m-ureter-r.glb'}, 'side': 'Right', 'rui_rank': 20, 'label': 'Right ureter'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001255', reference_organ='https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=51.97651, y_dimension=44.22118, z_dimension=61.69912, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_urinary_bladder', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/urinary-bladder-female/v1.2/assets/3d-vh-f-urinary-bladder.glb'}, 'rui_rank': 20, 'label': 'urinary bladder'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Male', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001255', reference_organ='https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=63.80895, y_dimension=39.86524, z_dimension=72.31382, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_M_urinary_bladder', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/urinary-bladder-male/v1.2/assets/3d-vh-m-urinary-bladder.glb'}, 'rui_rank': 20, 'label': 'urinary bladder'}),\n",
      " SpatialEntity(label=None, comment=None, rui_rank=None, sex='Female', side=None, slice_count=None, slice_thickness=None, placement=None, object=None, color=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000995', reference_organ='https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary', creator=None, creator_first_name=None, creator_last_name=None, creator_orcid=None, creation_date=datetime.date(2024, 6, 15), x_dimension=52.48761, y_dimension=46.99313, z_dimension=58.69555, dimension_units='millimeter', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary', '@type': 'SpatialEntity', 'object': {'@id': 'https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary_obj', '@type': 'SpatialObjectReference', 'file_format': 'model/gltf-binary', 'file_subpath': 'VH_F_uterus', 'file': 'https://cdn.humanatlas.io/digital-objects/ref-organ/uterus-female/v1.2/assets/3d-vh-f-uterus.glb'}, 'rui_rank': 20, 'label': 'uterus'})]\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.reference_organs(cache = True)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "1b602f81",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='3d_scene'></a>\n",
    "#### Get all nodes to form the 3D scene for an organ\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    age - (MinMax) (optional) (min = 1.0; max = 110.0)\n",
    "    bmi - (MinMax) (optional) (min = 13.0; max = 83.0)\n",
    "    cache - (boolean)  (optional) (defaults to True)\n",
    "    sex - (string)  (optional) (male, female, both)\n",
    "    technologies - (string) (optional) (List of technologies - api_instance.technology_names)\n",
    "    providers - (string) (optional) \n",
    "    ontology_terms - (string) (optional) \n",
    "    cell_type_terms - (string) (optional) \n",
    "    spatial - SpatialSearch(x, y, z, radius, target) (optional) \n",
    "    token - (string) (optional)\n",
    "    organ-iri - (string) (required)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "87710b53",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-right/v1.3/assets/3d-vh-f-kidney-r.glb', 'scenegraphNode': 'VH_F_right_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.10872150000000001, -0.1985958, 0.1344381, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr'})]\n"
     ]
    }
   ],
   "source": [
    "age = MinMax(min=45.0, max=60.0)\n",
    "bmi = MinMax(min=65.0, max=83.0)\n",
    "cache = True\n",
    "sex = \"female\"\n",
    "technologies = []\n",
    "providers = []\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0000955\",]\n",
    "cell_type_terms = [\"http://purl.obolibrary.org/obo/CL_0000000\",] \n",
    "spatial = [SpatialSearch(\n",
    "            x=84.0,\n",
    "            y=146.0,\n",
    "            z=53.0,\n",
    "            radius=12.0,\n",
    "            target=\"http://purl.org/ccf/latest/ccf.owl#VHFAllenBrain\",\n",
    "        ),]\n",
    "organ_iri = \"http://purl.obolibrary.org/obo/UBERON_0004539\"\n",
    "token = \"\"\n",
    "\n",
    "try:\n",
    "    # Get aggregate results / statistics\n",
    "    api_response = api_instance.reference_organ_scene(organ_iri=organ_iri, age=age, bmi=bmi, cache=cache, ontology_terms=ontology_terms, cell_type_terms=cell_type_terms, providers=providers, sex=sex, spatial=spatial, technologies=technologies, token=token\n",
    ")\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "1afabd89",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='nodes_3d'></a>\n",
    "#### Get all nodes to form the 3D scene of reference body, organs, and tissues\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    age - (MinMax) (optional) (min = 1.0; max = 110.0)\n",
    "    bmi - (MinMax) (optional) (min = 13.0; max = 83.0)\n",
    "    cache - (boolean)  (optional) (defaults to True)\n",
    "    sex - (string)  (optional) (male, female, both)\n",
    "    technologies - (string) (optional) (List of technologies - api_instance.technology_names)\n",
    "    providers - (string) (optional) \n",
    "    ontology_terms - (string) (optional) \n",
    "    cell_type_terms - (string) (optional) \n",
    "    spatial - SpatialSearch(x, y, z, radius, target) (optional) \n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "id": "2160f41b",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002097', reference_organ='https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/skin-female/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'skin', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/skin-female/v1.4/assets/3d-vh-f-skin.glb', 'scenegraphNode': 'VH_F_skin', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.5, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': False}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002097', reference_organ='https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/skin-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'skin', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/skin-male/v1.3/assets/3d-vh-m-skin.glb', 'scenegraphNode': 'VH_M_skin', 'color': [255, 255, 255, 255], 'opacity': 0.5, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': False}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004537', reference_organ='https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'blood vasculature', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/blood-vasculature-female/v1.3/assets/3d-vh-f-blood-vasculature.glb', 'scenegraphNode': 'VH_F_blood_vasculature', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004537', reference_organ='https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/blood-vasculature-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'blood vasculature', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/blood-vasculature-male/v1.3/assets/3d-vh-m-blood-vasculature.glb', 'scenegraphNode': 'VH_M_blood_vasculature', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000955', reference_organ='https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/brain-female/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'brain', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/brain-female/v1.4/assets/3d-allen-f-brain.glb', 'scenegraphNode': 'Allen_brain', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000955', reference_organ='https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/brain-male/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'brain', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/brain-male/v1.4/assets/3d-allen-m-brain.glb', 'scenegraphNode': 'Allen_brain', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004548', reference_organ='https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-female-left/v1.3/assets/3d-vh-f-eye-l.glb', 'scenegraphNode': 'VH_F_eye_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004549', reference_organ='https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-female-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-female-right/v1.3/assets/3d-vh-f-eye-r.glb', 'scenegraphNode': 'VH_F_eye_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004548', reference_organ='https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-male-left/v1.3/assets/3d-vh-m-eye-l.glb', 'scenegraphNode': 'VH_M_eye_L', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004549', reference_organ='https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/eye-male-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right eye', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/eye-male-right/v1.3/assets/3d-vh-m-eye-r.glb', 'scenegraphNode': 'VH_M_eye_R', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001303', reference_organ='https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left fallopian tube', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/fallopian-tube-female-left/v1.2/assets/3d-vh-f-fallopian-tube-l.glb', 'scenegraphNode': 'VH_F_fallopian_tube_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001302', reference_organ='https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/fallopian-tube-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right fallopian tube', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/fallopian-tube-female-right/v1.2/assets/3d-vh-f-fallopian-tube-r.glb', 'scenegraphNode': 'VH_F_fallopian_tube_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000948', reference_organ='https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/heart-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'heart', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/heart-female/v1.3/assets/3d-vh-f-heart.glb', 'scenegraphNode': 'VH_F_heart', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000948', reference_organ='https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/heart-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'heart', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/heart-male/v1.3/assets/3d-vh-m-heart.glb', 'scenegraphNode': 'VH_M_heart', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004538', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-left/v1.3/assets/3d-vh-f-kidney-l.glb', 'scenegraphNode': 'VH_F_left_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-right/v1.3/assets/3d-vh-f-kidney-r.glb', 'scenegraphNode': 'VH_F_right_kidney', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004538', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-left/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-male-left/v1.3/assets/3d-vh-m-kidney-l.glb', 'scenegraphNode': 'VH_M_left_kidney', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0004539', reference_organ='https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/kidney-male-right/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right kidney', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-male-right/v1.3/assets/3d-vh-m-kidney-r.glb', 'scenegraphNode': 'VH_M_right_kidney', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24978', reference_organ='https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-female-left/v1.2/assets/3d-vh-f-knee-l.glb', 'scenegraphNode': 'VH_F_knee_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24977', reference_organ='https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-female-right/v1.2/assets/3d-vh-f-knee-r.glb', 'scenegraphNode': 'VH_F_knee_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24978', reference_organ='https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-male-left/v1.2/assets/3d-vh-m-knee-l.glb', 'scenegraphNode': 'VH_M_knee_L', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma24977', reference_organ='https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/knee-male-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right knee', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/knee-male-right/v1.2/assets/3d-vh-m-knee-r.glb', 'scenegraphNode': 'VH_M_knee_R', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000059', reference_organ='https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'large intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/large-intestine-female/v1.3/assets/3d-sbu-f-large-intestine.glb', 'scenegraphNode': 'VH_F_colon', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000059', reference_organ='https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/large-intestine-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'large intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/large-intestine-male/v1.3/assets/3d-sbu-m-large-intestine.glb', 'scenegraphNode': 'VH_M_colon', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001737', reference_organ='https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/larynx-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'larynx', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/larynx-female/v1.1/assets/3d-vh-f-larynx.glb', 'scenegraphNode': 'VH_F_larynx', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001737', reference_organ='https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/larynx-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'larynx', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/larynx-male/v1.1/assets/3d-vh-m-larynx.glb', 'scenegraphNode': 'VH_M_larynx', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002107', reference_organ='https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/liver-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'liver', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/liver-female/v1.2/assets/3d-vh-f-liver.glb', 'scenegraphNode': 'VH_F_liver', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002107', reference_organ='https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/liver-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'liver', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/liver-male/v1.2/assets/3d-vh-m-liver.glb', 'scenegraphNode': 'VH_M_liver', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001004', reference_organ='https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lung-female/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lung', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lung-female/v1.4/assets/3d-vh-f-lung.glb', 'scenegraphNode': 'VH_F_respiratory_system', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001004', reference_organ='https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lung-male/v1.4#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lung', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lung-male/v1.4/assets/3d-vh-m-lung.glb', 'scenegraphNode': 'VH_M_respiratory_system', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002509', reference_organ='https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lymph node', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lymph-node-female/v1.3/assets/3d-nih-f-lymph-node.glb', 'scenegraphNode': 'Yao_lymph_node', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002509', reference_organ='https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/lymph-node-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'lymph node', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/lymph-node-male/v1.3/assets/3d-nih-m-lymph-node.glb', 'scenegraphNode': 'Yao_lymph_node', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002182', reference_organ='https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'main bronchus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/main-bronchus-female/v1.1/assets/3d-vh-f-main-bronchus.glb', 'scenegraphNode': 'VH_F_main_bronchi', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002182', reference_organ='https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/main-bronchus-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'main bronchus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/main-bronchus-male/v1.1/assets/3d-vh-m-main-bronchus.glb', 'scenegraphNode': 'VH_M_main_bronchi', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma57991', reference_organ='https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-left/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left mammary gland', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/mammary-gland-female-left/v1.1/assets/3d-vh-f-mammary-gland-l.glb', 'scenegraphNode': 'VH_F_mammary_gland_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma57987', reference_organ='https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/mammary-gland-female-right/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right mammary gland', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/mammary-gland-female-right/v1.1/assets/3d-vh-f-mammary-gland-r.glb', 'scenegraphNode': 'VH_F_mammary_gland_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma7214', reference_organ='https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left ovary', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ovary-female-left/v1.2/assets/3d-vh-f-ovary-l.glb', 'scenegraphNode': 'VH_F_left_ovary', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma7213', reference_organ='https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ovary-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right ovary', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ovary-female-right/v1.2/assets/3d-vh-f-ovary-r.glb', 'scenegraphNode': 'VH_F_right_ovary', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54974', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-left/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-female-left/v1.1/assets/3d-vh-f-palatine-tonsil-l.glb', 'scenegraphNode': 'VH_F_palatine_tonsil_L', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54973', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-female-right/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-female-right/v1.1/assets/3d-vh-f-palatine-tonsil-r.glb', 'scenegraphNode': 'VH_F_palatine_tonsil_R', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54974', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-left/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-male-left/v1.1/assets/3d-vh-m-palatine-tonsil-l.glb', 'scenegraphNode': 'VH_M_palatine_tonsil_L', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.org/sig/ont/fma/fma54973', reference_organ='https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/palatine-tonsil-male-right/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right palatine tonsil', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/palatine-tonsil-male-right/v1.1/assets/3d-vh-m-palatine-tonsil-r.glb', 'scenegraphNode': 'VH_M_palatine_tonsil_R', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001264', reference_organ='https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pancreas', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pancreas-female/v1.3/assets/3d-vh-f-pancreas.glb', 'scenegraphNode': 'VH_F_pancreas', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001264', reference_organ='https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pancreas-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pancreas', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pancreas-male/v1.3/assets/3d-vh-m-pancreas.glb', 'scenegraphNode': 'VH_M_pancreas', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001270', reference_organ='https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pelvis', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pelvis-female/v1.3/assets/3d-vh-f-pelvis.glb', 'scenegraphNode': 'VH_F_pelvis', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001270', reference_organ='https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/pelvis-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'pelvis', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/pelvis-male/v1.3/assets/3d-vh-m-pelvis.glb', 'scenegraphNode': 'VH_M_pelvis', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001987', reference_organ='https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/placenta-full-term-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'placenta full term', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/placenta-full-term-female/v1.1/assets/3d-vh-f-placenta-full-term.glb', 'scenegraphNode': 'VH_F_placenta', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000079', reference_organ='https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/prostate-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'prostate', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/prostate-male/v1.2/assets/3d-vh-m-prostate.glb', 'scenegraphNode': 'VH_M_male_reproductive_system', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002108', reference_organ='https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'small intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/small-intestine-female/v1.2/assets/3d-vh-f-small-intestine.glb', 'scenegraphNode': 'VH_F_small_intestine', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002108', reference_organ='https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/small-intestine-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'small intestine', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/small-intestine-male/v1.2/assets/3d-vh-m-small-intestine.glb', 'scenegraphNode': 'VH_M_small_intestine', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002240', reference_organ='https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spinal cord', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spinal-cord-female/v1.1/assets/3d-vh-f-spinal-cord.glb', 'scenegraphNode': 'VH_F_spinal_cord', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002240', reference_organ='https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spinal-cord-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spinal cord', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spinal-cord-male/v1.1/assets/3d-vh-m-spinal-cord.glb', 'scenegraphNode': 'VH_M_spinal_cord', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002106', reference_organ='https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spleen-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spleen', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spleen-female/v1.3/assets/3d-vh-f-spleen.glb', 'scenegraphNode': 'VH_F_spleen', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002106', reference_organ='https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/spleen-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'spleen', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/spleen-male/v1.3/assets/3d-vh-m-spleen.glb', 'scenegraphNode': 'VH_M_spleen', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002370', reference_organ='https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/thymus-female/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'thymus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/thymus-female/v1.3/assets/3d-vh-f-thymus.glb', 'scenegraphNode': 'VH_F_thymus', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0002370', reference_organ='https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/thymus-male/v1.3#primary', '@type': 'SpatialSceneNode', 'tooltip': 'thymus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/thymus-male/v1.3/assets/3d-vh-m-thymus.glb', 'scenegraphNode': 'VH_M_thymus', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0003126', reference_organ='https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/trachea-female/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'trachea', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/trachea-female/v1.1/assets/3d-vh-f-trachea.glb', 'scenegraphNode': 'VH_F_trachea', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0003126', reference_organ='https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/trachea-male/v1.1#primary', '@type': 'SpatialSceneNode', 'tooltip': 'trachea', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/trachea-male/v1.1/assets/3d-vh-m-trachea.glb', 'scenegraphNode': 'VH_M_trachea', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001223', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-female-left/v1.2/assets/3d-vh-f-ureter-l.glb', 'scenegraphNode': 'VH_F_left_ureter', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001222', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-female-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-female-right/v1.2/assets/3d-vh-f-ureter-r.glb', 'scenegraphNode': 'VH_F_right_ureter', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001223', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-left/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Left ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-male-left/v1.2/assets/3d-vh-m-ureter-l.glb', 'scenegraphNode': 'VH_M_ureter_L', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001222', reference_organ='https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/ureter-male-right/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'Right ureter', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/ureter-male-right/v1.2/assets/3d-vh-m-ureter-r.glb', 'scenegraphNode': 'VH_M_ureter_R', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001255', reference_organ='https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'urinary bladder', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/urinary-bladder-female/v1.2/assets/3d-vh-f-urinary-bladder.glb', 'scenegraphNode': 'VH_F_urinary_bladder', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0001255', reference_organ='https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary', sex='Male', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/urinary-bladder-male/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'urinary bladder', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/urinary-bladder-male/v1.2/assets/3d-vh-m-urinary-bladder.glb', 'scenegraphNode': 'VH_M_urinary_bladder', 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id=None, ccf_annotations=None, representation_of='http://purl.obolibrary.org/obo/UBERON_0000995', reference_organ='https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary', sex='Female', additional_properties={'@id': 'https://purl.humanatlas.io/ref-organ/uterus-female/v1.2#primary', '@type': 'SpatialSceneNode', 'tooltip': 'uterus', 'scenegraph': 'https://cdn.humanatlas.io/digital-objects/ref-organ/uterus-female/v1.2/assets/3d-vh-f-uterus.glb', 'scenegraphNode': 'VH_F_uterus', 'transformMatrix': [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'color': [255, 255, 255, 255], 'opacity': 0.2, 'unpickable': True, '_lighting': 'pbr', 'zoomBasedOpacity': True}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock2', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000955', 'http://purl.obolibrary.org/obo/UBERON_0002581', 'http://purl.obolibrary.org/obo/UBERON_0002661', 'http://purl.obolibrary.org/obo/UBERON_0002703', 'http://purl.obolibrary.org/obo/UBERON_0002813', 'http://purl.obolibrary.org/obo/UBERON_0035932', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/5c78be2e-d36c-4994-ae42-a94ccf935988', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0025, 0, 0, 0, 0, 0.0025, 0, 0, 0, 0, 0.005, 0, 0.012696619999999992, 0.8475703, -0.08907250000000001, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock3', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000955', 'http://purl.obolibrary.org/obo/UBERON_0002581', 'http://purl.obolibrary.org/obo/UBERON_0002661', 'http://purl.obolibrary.org/obo/UBERON_0002703', 'http://purl.obolibrary.org/obo/UBERON_0002813', 'http://purl.obolibrary.org/obo/UBERON_0035932', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/7739f00f-62bc-4852-8d2b-518ae26a9b4a', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0025, 0, 0, 0, 0, 0.0025, 0, 0, 0, 0, 0.005, 0, -0.00013438000000000339, 0.8499313, -0.09033850000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor3_TissueBlock2', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000955', 'http://purl.obolibrary.org/obo/UBERON_0002581', 'http://purl.obolibrary.org/obo/UBERON_0002661', 'http://purl.obolibrary.org/obo/UBERON_0002703', 'http://purl.obolibrary.org/obo/UBERON_0002813', 'http://purl.obolibrary.org/obo/UBERON_0006093', 'http://purl.obolibrary.org/obo/UBERON_0035932', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/4e24cfc4-bfea-4233-8fa0-d9967e3bdf7d', '@type': 'SpatialSceneNode', 'transformMatrix': [0.01, 0, 0, 0, 0, 0.01, 0, 0, 0, 0, 0.01, 0, 0.007904619999999987, 0.8416943, -0.08604550000000002, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000955', 'http://purl.obolibrary.org/obo/UBERON_0002581', 'http://purl.obolibrary.org/obo/UBERON_0002703', 'http://purl.obolibrary.org/obo/UBERON_0002813', 'http://purl.obolibrary.org/obo/UBERON_0035932', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/a388eebd-02f8-4a5c-ab8e-62405ce34e99', '@type': 'SpatialSceneNode', 'transformMatrix': [0.0025, 0, 0, 0, 0, 0.0025, 0, 0, 0, 0, 0.005, 0, 0.005196619999999999, 0.8500703000000001, -0.0915725, 1], 'color': [255, 255, 255, 229.5]}),\n",
      " SpatialSceneNode(name=None, tooltip=None, unpickable=None, geometry=None, lighting=None, zoom_based_opacity=None, zoom_to_on_load=None, scenegraph=None, scenegraph_node=None, color=None, opacity=None, transform_matrix=None, priority=None, entity_id='https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H200.1023_Donor_TissueBlock1', ccf_annotations=['http://purl.obolibrary.org/obo/UBERON_0000955', 'http://purl.obolibrary.org/obo/UBERON_0002581', 'http://purl.obolibrary.org/obo/UBERON_0002661', 'http://purl.obolibrary.org/obo/UBERON_0002703', 'http://purl.obolibrary.org/obo/UBERON_0002813', 'http://purl.obolibrary.org/obo/UBERON_0013702'], representation_of=None, reference_organ=None, sex=None, additional_properties={'@id': 'http://purl.org/ccf/1.5/f7500931-e3b6-4aab-bed8-735619fe645e', '@type': 'SpatialSceneNode', 'transformMatrix': [0.005, 0, 0, 0, 0, 0.005, 0, 0, 0, 0, 0.005, 0, 0.031404619999999994, 0.8396943, -0.08204550000000002, 1], 'color': [255, 255, 255, 229.5]})]\n"
     ]
    }
   ],
   "source": [
    "age = MinMax(min=45.0, max=60.0)\n",
    "bmi = MinMax(min=65.0, max=83.0)\n",
    "cache = True\n",
    "sex = \"female\"\n",
    "technologies = []\n",
    "providers = []\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0000955\",]\n",
    "cell_type_terms = [\"http://purl.obolibrary.org/obo/CL_0000000\",] \n",
    "spatial = [SpatialSearch(\n",
    "            x=84.0,\n",
    "            y=146.0,\n",
    "            z=53.0,\n",
    "            radius=12.0,\n",
    "            target=\"http://purl.org/ccf/latest/ccf.owl#VHFAllenBrain\",\n",
    "        ),]\n",
    "token = \"\"\n",
    "\n",
    "try:\n",
    "    # Get aggregate results / statistics\n",
    "    api_response = api_instance.scene(age=age, bmi=bmi, cache=cache, ontology_terms=ontology_terms, cell_type_terms=cell_type_terms, providers=providers, sex=sex, spatial=spatial, technologies=technologies, token=token\n",
    ")\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "8e0e94cb",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='tech'></a>\n",
    "#### Get technology names (for filtering)\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional)\n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "id": "3f79894f",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "['10x',\n",
      " 'AF',\n",
      " 'ATACseq',\n",
      " 'CODEX',\n",
      " 'Cell DIVE',\n",
      " 'DESI',\n",
      " 'H&E',\n",
      " 'Histology',\n",
      " 'IMC',\n",
      " 'LC',\n",
      " 'Light Sheet',\n",
      " 'MALDI',\n",
      " 'OTHER',\n",
      " 'Publication',\n",
      " 'RNAseq',\n",
      " 'Slide-seq',\n",
      " 'WGS',\n",
      " 'seqFish',\n",
      " 't-CyCIF']\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    api_response = api_instance.technology_names(cache = False)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "80c2337f",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='tissue_block'></a>\n",
    "#### Get Tissue Block Results\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    age - (MinMax) (optional) (min = 1.0; max = 110.0)\n",
    "    bmi - (MinMax) (optional) (min = 13.0; max = 83.0)\n",
    "    cache - (boolean)  (optional) (defaults to True)\n",
    "    sex - (string)  (optional) (male, female, both)\n",
    "    technologies - (string) (optional) (List of technologies - api_instance.technology_names)\n",
    "    providers - (string) (optional) \n",
    "    ontology_terms - (string) (optional) \n",
    "    cell_type_terms - (string) (optional) \n",
    "    spatial - SpatialSearch(x, y, z, radius, target) (optional) \n",
    "    token - (string) (optional)\n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "id": "8f690344",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[TissueBlock(sample_type='Tissue Block', spatial_entity_id=None, donor=None, section_count=None, section_size=None, section_units='millimeter', sections=None, label='Registered 7/28/2022, Raymond Sanchez, Allen Institute', description='5 x 5 x 10 millimeter, 10 millimeter', link='https://www.nature.com/articles/s41586-021-03465-8', datasets=[], additional_properties={'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock2', '@type': 'Sample', 'donor': {'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor', '@type': 'Donor', 'link': 'https://www.nature.com/articles/s41586-021-03465-8', 'description': 'Entered 8/29/2022, Raymond Sanchez, Allen Institute for Brain Science', 'label': 'Female, Age 60', 'providerName': 'Allen Institute'}, 'sections': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock2_TissueSection1', '@type': 'Sample', 'datasets': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock2_TissueSection1_Dataset1', '@type': 'Dataset'}], 'sampleType': 'Tissue Section'}], 'spatialEntityId': 'http://purl.org/ccf/1.5/5c78be2e-d36c-4994-ae42-a94ccf935988'}),\n",
      " TissueBlock(sample_type='Tissue Block', spatial_entity_id=None, donor=None, section_count=None, section_size=None, section_units='millimeter', sections=None, label='Registered 7/28/2022, Raymond Sanchez, Allen Institute', description='5 x 5 x 10 millimeter, 10 millimeter', link='https://www.nature.com/articles/s41586-021-03465-8', datasets=[], additional_properties={'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock3', '@type': 'Sample', 'donor': {'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor', '@type': 'Donor', 'link': 'https://www.nature.com/articles/s41586-021-03465-8', 'description': 'Entered 8/29/2022, Raymond Sanchez, Allen Institute for Brain Science', 'label': 'Female, Age 60', 'providerName': 'Allen Institute'}, 'sections': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock3_TissueSection1', '@type': 'Sample', 'datasets': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor1_TissueBlock3_TissueSection1_Dataset1', '@type': 'Dataset'}], 'sampleType': 'Tissue Section'}], 'spatialEntityId': 'http://purl.org/ccf/1.5/7739f00f-62bc-4852-8d2b-518ae26a9b4a'}),\n",
      " TissueBlock(sample_type='Tissue Block', spatial_entity_id=None, donor=None, section_count=None, section_size=None, section_units='millimeter', sections=None, label='Registered 7/28/2022, Raymond Sanchez, Allen Institute', description='20 x 20 x 20 millimeter, 20 millimeter', link='https://www.nature.com/articles/s41586-021-03465-8', datasets=[], additional_properties={'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor3_TissueBlock2', '@type': 'Sample', 'donor': {'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H200.1023_Donor', '@type': 'Donor', 'link': 'https://www.nature.com/articles/s41586-021-03465-8', 'description': 'Entered 8/29/2022, Raymond Sanchez, Allen Institute for Brain Science', 'label': 'Female, Age 43', 'providerName': 'Allen Institute'}, 'sections': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor3_TissueBlock2_TissueSection1', '@type': 'Sample', 'datasets': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#Donor3_TissueBlock2_TissueSection1_Dataset1', '@type': 'Dataset'}], 'sampleType': 'Tissue Section'}], 'spatialEntityId': 'http://purl.org/ccf/1.5/4e24cfc4-bfea-4233-8fa0-d9967e3bdf7d'}),\n",
      " TissueBlock(sample_type='Tissue Block', spatial_entity_id=None, donor=None, section_count=None, section_size=None, section_units='millimeter', sections=None, label='Registered 7/28/2022, Raymond Sanchez, Allen Institute', description='5 x 5 x 10 millimeter, 10 millimeter', link='https://www.nature.com/articles/s41586-021-03465-8', datasets=[], additional_properties={'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor_TissueBlock1', '@type': 'Sample', 'donor': {'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor', '@type': 'Donor', 'link': 'https://www.nature.com/articles/s41586-021-03465-8', 'description': 'Entered 8/29/2022, Raymond Sanchez, Allen Institute for Brain Science', 'label': 'Female, Age 60', 'providerName': 'Allen Institute'}, 'sections': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor_TissueBlock1_TissueSection1', '@type': 'Sample', 'datasets': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H18.30.001_Donor_TissueBlock1_TissueSection1_Dataset1', '@type': 'Dataset'}], 'sampleType': 'Tissue Section'}], 'spatialEntityId': 'http://purl.org/ccf/1.5/a388eebd-02f8-4a5c-ab8e-62405ce34e99'}),\n",
      " TissueBlock(sample_type='Tissue Block', spatial_entity_id=None, donor=None, section_count=None, section_size=None, section_units='millimeter', sections=None, label='Registered 7/28/2022, Raymond Sanchez, Allen Institute', description='10 x 10 x 10 millimeter, 10 millimeter', link='https://www.nature.com/articles/s41586-021-03465-8', datasets=[], additional_properties={'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H200.1023_Donor_TissueBlock1', '@type': 'Sample', 'donor': {'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H200.1023_Donor', '@type': 'Donor', 'link': 'https://www.nature.com/articles/s41586-021-03465-8', 'description': 'Entered 8/29/2022, Raymond Sanchez, Allen Institute for Brain Science', 'label': 'Female, Age 43', 'providerName': 'Allen Institute'}, 'sections': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H200.1023_Donor_TissueBlock1_TissueSection1', '@type': 'Sample', 'datasets': [{'@id': 'https://api.cellxgene.cziscience.com/dp/v1/collections/367d95c0-0eb0-4dae-8276-9407239421ee#H200.1023_Donor_TissueBlock1_TissueSection1_Dataset1', '@type': 'Dataset'}], 'sampleType': 'Tissue Section'}], 'spatialEntityId': 'http://purl.org/ccf/1.5/f7500931-e3b6-4aab-bed8-735619fe645e'})]\n"
     ]
    }
   ],
   "source": [
    "age = MinMax(min=45.0, max=60.0)\n",
    "bmi = MinMax(min=65.0, max=83.0)\n",
    "cache = True\n",
    "sex = \"female\"\n",
    "technologies = []\n",
    "providers = []\n",
    "ontology_terms = [\"http://purl.obolibrary.org/obo/UBERON_0000955\",]\n",
    "cell_type_terms = [\"http://purl.obolibrary.org/obo/CL_0000000\",] \n",
    "spatial = [SpatialSearch(\n",
    "            x=84.0,\n",
    "            y=146.0,\n",
    "            z=53.0,\n",
    "            radius=12.0,\n",
    "            target=\"http://purl.org/ccf/latest/ccf.owl#VHFAllenBrain\",\n",
    "        ),]\n",
    "token = \"\"\n",
    "\n",
    "try:\n",
    "    api_response = api_instance.tissue_blocks(age=age, bmi=bmi, cache=cache, ontology_terms=ontology_terms, cell_type_terms=cell_type_terms, providers=providers, sex=sex, spatial=spatial, technologies=technologies, token=token\n",
    ")\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "9cafd1d8",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='gtex_rui'></a>\n",
    "#### Get all GTEx rui locations (if enabled)\n",
    "<pre>\n",
    "Accepted Parameters:\n",
    "    cache - (boolean) (optional) \n",
    "</pre>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "id": "3af8f4db",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'@context': 'https://hubmapconsortium.github.io/ccf-ontology/ccf-context.jsonld',\n",
      " '@graph': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': ['Females (n=94) Mean Age 53.5 (range 21 - 70)',\n",
      "                       'Females (n=94), Mean Age 53.5 (range 21-70)'],\n",
      "             'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '2 x 2 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Artery_Coronary#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/3626fb05-6e59-4aa9-8d03-2b5e995b2522',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001626'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/3626fb05-6e59-4aa9-8d03-2b5e995b2522_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/3626fb05-6e59-4aa9-8d03-2b5e995b2522',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFBloodVasculature',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 113.174,\n",
      "                                                         'y_rotation': 4,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 494.659,\n",
      "                                                         'z_rotation': 34,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 91.963},\n",
      "                                           'x_dimension': 2,\n",
      "                                           'y_dimension': 2,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=146) Mean Age 54.3 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '2 x 2 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Artery_Coronary#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Artery_Coronary',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/7e05a1f1-fc08-4add-bd72-ffc11267c048',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001626'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/7e05a1f1-fc08-4add-bd72-ffc11267c048_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/7e05a1f1-fc08-4add-bd72-ffc11267c048',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMBloodVasculature',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 134.46,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 547.743,\n",
      "                                                         'z_rotation': -26,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 113.213},\n",
      "                                           'x_dimension': 2,\n",
      "                                           'y_dimension': 2,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Breast#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 9/17/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=297), Mean Age ? (range 20-79)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Breast_Mammary_Tissue',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Breast#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Breast#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 1/2/2023, Kristin '\n",
      "                                                 'Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Breast_Mammary_Tissue',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': 'Central breast subareolar region of '\n",
      "                                         'the right breast, 1-2 cm under the '\n",
      "                                         'skin surface of nipple region',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Breast#FDonors',\n",
      "                          'label': 'Registered 1/2/2023, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Breast_Mammary_Tissue',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/3b5d2036-3c56-4cf8-808f-462c9e3681e5',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0018140',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma58088',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma73118',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma73165',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma62102'],\n",
      "                                           'creation_date': '2023-02-03',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/3b5d2036-3c56-4cf8-808f-462c9e3681e5_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2023-02-03',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/3b5d2036-3c56-4cf8-808f-462c9e3681e5',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFRightMammaryGland',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 39.809,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 46.002,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 93.095},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=133) Mean Age 51.7 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/8e476601-a5e6-4d15-86a4-e6d3da9abb7e',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001157'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/8e476601-a5e6-4d15-86a4-e6d3da9abb7e_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/8e476601-a5e6-4d15-86a4-e6d3da9abb7e',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFColon',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -32,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 121.557,\n",
      "                                                         'y_rotation': 9,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 201.87,\n",
      "                                                         'z_rotation': -1,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 180.201},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=240) Mean Age 52.3 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Colon_Sigmoid#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Colon_Sigmoid',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/383d2c1a-4c8c-4aa3-b154-1ceacd3fa871',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001157'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/383d2c1a-4c8c-4aa3-b154-1ceacd3fa871_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/383d2c1a-4c8c-4aa3-b154-1ceacd3fa871',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMColon',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -30,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 130.858,\n",
      "                                                         'y_rotation': 1,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 359.481,\n",
      "                                                         'z_rotation': 17,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 191.877},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=259) Mean Age 50.3 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Colon_Transverse',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Colon_Transverse',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Colon_Transverse#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Colon_Transverse',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/fd7270d4-105a-4058-aece-2d2bb0668da2',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001159'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/fd7270d4-105a-4058-aece-2d2bb0668da2_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/fd7270d4-105a-4058-aece-2d2bb0668da2',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMColon',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -103,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 98.899,\n",
      "                                                         'y_rotation': 9,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 90.782,\n",
      "                                                         'z_rotation': -47,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 112.922},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=136) Mean Age 55 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/cc1251a4-d367-4bb1-b2d9-05ae33209f0d',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000948',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002084',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/cc1251a4-d367-4bb1-b2d9-05ae33209f0d_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/cc1251a4-d367-4bb1-b2d9-05ae33209f0d',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -32,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 149.806,\n",
      "                                                         'y_rotation': 55,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 40.112,\n",
      "                                                         'z_rotation': 38,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 80.223},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=293) Mean Age 56.4 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Atrial_Appendage',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/676e549a-6234-48ee-b7cb-82258c17054b',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002084'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/676e549a-6234-48ee-b7cb-82258c17054b_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/676e549a-6234-48ee-b7cb-82258c17054b',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -35,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 115.691,\n",
      "                                                         'y_rotation': 52,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 29.602,\n",
      "                                                         'z_rotation': 31,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 90.093},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=138) Mean Age 53.2 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/a04e60c6-693a-4c25-a069-62521783fd15',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000948',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002078',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002080',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0013702'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/a04e60c6-693a-4c25-a069-62521783fd15_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/a04e60c6-693a-4c25-a069-62521783fd15',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -32,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 27.221,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 81.047,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 83.766},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=294) Mean Age 54.9 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Heart_Left_Ventricle',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/f6512db4-2809-4ffe-864d-ace61789dff6',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002078',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002080'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/f6512db4-2809-4ffe-864d-ace61789dff6_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/f6512db4-2809-4ffe-864d-ace61789dff6',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMHeart',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -38,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 29.389,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 85.271,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 60.132},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 9/17/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=19) Mean Age 56.4 (range 30 - 69)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': 'kidney cortex',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Kidney_Cortex#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0004200'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/c80e8f79-2b12-470d-be3c-f195a3686943',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLeftKidney',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -50,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 20.254,\n",
      "                                                         'y_rotation': 6,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 102.631,\n",
      "                                                         'z_rotation': 82,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 40.782},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=66) Mean Age 56.3 (range 27 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 4/4/2023, Kristin '\n",
      "                                                 'Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 4 millimeter, 4 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Kidney_Cortex#MDonors',\n",
      "                          'label': 'Registered 4/4/2023, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Kidney_Cortex',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000362',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001225',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001284',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0004200'],\n",
      "                                           'creation_date': '2023-05-05',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2023-05-05',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/c40d5540-f400-484c-b8d1-fbcb44194af7',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMLeftKidney',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -74,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 26.06,\n",
      "                                                         'y_rotation': 9,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 100.019,\n",
      "                                                         'z_rotation': 80,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 26.704},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 4},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Liver#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=65) Mean Age 54.8 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Liver#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Liver#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Liver#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/f6203770-64ee-40cc-b7b2-339f1ae491cc',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001114',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15729'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/f6203770-64ee-40cc-b7b2-339f1ae491cc_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/f6203770-64ee-40cc-b7b2-339f1ae491cc',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLiver',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 59.038,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 134.762,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 101.244},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Liver#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=161) Mean Age 54.5 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Liver#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Liver#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Liver#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Liver',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/74370757-0cd2-44e5-83d8-47eb550c441a',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001114',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15729'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/74370757-0cd2-44e5-83d8-47eb550c441a_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/74370757-0cd2-44e5-83d8-47eb550c441a',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMLiver',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 56.201,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 145.242,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 135.274},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Lung#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=183) Mean Age 53.7 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Lung#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Lung#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/21/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 10 millimeter, 10 '\n",
      "                                         'millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Lung#FDonors',\n",
      "                          'label': 'Registered 8/21/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ab9cafec-3eff-49ac-b2a9-ba96c22d80f9',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002048',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002185',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0003406'],\n",
      "                                           'creation_date': '2021-09-22',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ab9cafec-3eff-49ac-b2a9-ba96c22d80f9_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-22',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ab9cafec-3eff-49ac-b2a9-ba96c22d80f9',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLung',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 183.956,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 197.605,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 71.67},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 10},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Lung#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=395) Mean Age 54.1 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Lung#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Lung#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/21/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 10 millimeter, 10 '\n",
      "                                         'millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Lung#MDonors',\n",
      "                          'label': 'Registered 8/21/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Lung',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ab2e49b2-1959-44af-8e83-ac16878f6c12',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002048',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002168',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0008952',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma7385',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma7386',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma7426'],\n",
      "                                           'creation_date': '2021-09-22',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ab2e49b2-1959-44af-8e83-ac16878f6c12_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-22',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ab2e49b2-1959-44af-8e83-ac16878f6c12',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMLung',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 160.02,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 213.664,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 78.402},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 10},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Ovary#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=180) Mean Age 50.2 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Ovary',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Ovary#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Ovary#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Ovary',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 3 millimeter, 3 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Ovary#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Ovary',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/e137f366-a936-4357-945a-929d1d682890',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.org/sig/ont/fma/fma7214'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/e137f366-a936-4357-945a-929d1d682890_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/e137f366-a936-4357-945a-929d1d682890',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFLeftOvary',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -14,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 7.827,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 12.79,\n",
      "                                                         'z_rotation': -14,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 5.267},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 3},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Pancreas#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=121) Mean Age 52.1 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Pancreas#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/232b6561-19ed-4da3-a61e-286245f42f25',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001069',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001150',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14517'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/232b6561-19ed-4da3-a61e-286245f42f25_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/232b6561-19ed-4da3-a61e-286245f42f25',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFPancreas',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 68.55,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 40.634,\n",
      "                                                         'z_rotation': -13,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 62.717},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Pancreas#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=207) Mean Age 50.3 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Pancreas#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Pancreas#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Pancreas',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/d386cdea-8d3c-46a2-9900-fbd5237cba80',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001069',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0001150',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14517'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/d386cdea-8d3c-46a2-9900-fbd5237cba80_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/d386cdea-8d3c-46a2-9900-fbd5237cba80',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMPancreas',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 46.818,\n",
      "                                                         'y_rotation': 24,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 48.012,\n",
      "                                                         'z_rotation': 29,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 66.82},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Prostate#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=245) Mean Age 50.6 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Prostate',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Prostate#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Prostate#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Prostate',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 7 millimeter, 7 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Prostate#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Prostate',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/5475ae38-db50-4868-92ba-8718bf136c7b',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0000999',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0002367',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_0006947',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_8410026',\n",
      "                                                               'http://purl.obolibrary.org/obo/UBERON_8410027'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/5475ae38-db50-4868-92ba-8718bf136c7b_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/5475ae38-db50-4868-92ba-8718bf136c7b',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMProstate',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 37.882,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 16.321,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 17.244},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 7},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=193) Mean Age 53.3 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/2185217b-77ed-4043-b79b-1c2d33b6d524',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/2185217b-77ed-4043-b79b-1c2d33b6d524_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/2185217b-77ed-4043-b79b-1c2d33b6d524',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 530.092,\n",
      "                                                         'y_rotation': -44,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 721.462,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 221.009},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=411) Mean Age 53.3 (range 20 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Not_Sun_Exposed_Suprapubic',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ece78b3e-635e-45d1-8217-35fd50392cce',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ece78b3e-635e-45d1-8217-35fd50392cce_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ece78b3e-635e-45d1-8217-35fd50392cce',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 591.656,\n",
      "                                                         'y_rotation': -30,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 851.01,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 244.41},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=234) Mean Age 52.9 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/6f04ffad-3b9d-4c1c-afc0-fd203b02e5a3',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/6f04ffad-3b9d-4c1c-afc0-fd203b02e5a3_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/6f04ffad-3b9d-4c1c-afc0-fd203b02e5a3',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 15,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 620.063,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 381.198,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 86.714},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=467) Mean Age 52.9 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 5 millimeter, 5 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg#MDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Skin_Sun_Exposed_Lower_leg',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/cce37703-e4e8-454c-a0c4-4ff58652ab8f',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002097'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/cce37703-e4e8-454c-a0c4-4ff58652ab8f_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/cce37703-e4e8-454c-a0c4-4ff58652ab8f',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSkinV1.1',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 20,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 678.414,\n",
      "                                                         'y_rotation': 13,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 479.517,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 65.16},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 5},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=67) Mean Age 48.6 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/18/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '6 x 6 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#FDonors',\n",
      "                          'label': 'Registered 0/18/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ec1cc18d-9a48-4c09-a720-2b54c3f83bd9',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002116',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14966'],\n",
      "                                           'creation_date': '2022-01-19',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ec1cc18d-9a48-4c09-a720-2b54c3f83bd9_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-19',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ec1cc18d-9a48-4c09-a720-2b54c3f83bd9',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSmallIntestine',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 16.348,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 67.85,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 42.23},\n",
      "                                           'x_dimension': 6,\n",
      "                                           'y_dimension': 6,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2023, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=120) Mean Age 48.4 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/18/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 2 millimeter, 2 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum#MDonors',\n",
      "                          'label': 'Registered 0/18/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Small_Intestine_Terminal_Ileum',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/d237fd29-749e-4734-a925-d36e5d1db31d',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0002116',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma14966'],\n",
      "                                           'creation_date': '2022-01-19',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/d237fd29-749e-4734-a925-d36e5d1db31d_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-19',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/d237fd29-749e-4734-a925-d36e5d1db31d',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSmallIntestine',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 28.138,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 87.211,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 58.237},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 2},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Spleen#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=87) Mean Age 49.7 (range 23 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Spleen#FDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ed9bc73e-ab9c-4bb1-8b96-4ecd1f12c7a7',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001248',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15828',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15837'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ed9bc73e-ab9c-4bb1-8b96-4ecd1f12c7a7_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ed9bc73e-ab9c-4bb1-8b96-4ecd1f12c7a7',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFSpleen',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 57.678,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 51.661,\n",
      "                                                         'z_rotation': 48,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 37.735},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Spleen#MDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 5/18/2021, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Males (n=154) Mean Age 49.9 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#MDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Spleen#MDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 8/16/2021, '\n",
      "                                                 'Kristin  Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '10 x 10 x 8 millimeter, 8 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Spleen#MDonors',\n",
      "                          'label': 'Registered 8/16/2021, Kristin  Ardlie, '\n",
      "                                   'GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Spleen',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/ec2488fb-6ff5-4f43-82b5-9704a650d00a',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.obolibrary.org/obo/UBERON_0001248',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15828',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma15837'],\n",
      "                                           'creation_date': '2021-09-17',\n",
      "                                           'creator': 'Kristin  Ardlie',\n",
      "                                           'creator_first_name': 'Kristin ',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/ec2488fb-6ff5-4f43-82b5-9704a650d00a_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2021-09-17',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/ec2488fb-6ff5-4f43-82b5-9704a650d00a',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHMSpleen',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': 0,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 78.064,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 78.666,\n",
      "                                                         'z_rotation': 49,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 42.816},\n",
      "                                           'x_dimension': 10,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 8},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Male'},\n",
      "            {'@id': 'https://gtexportal.org/home/tissue/Uterus#FDonors',\n",
      "             '@type': 'Donor',\n",
      "             'consortium_name': 'GTEx',\n",
      "             'description': 'Entered 1/26/2022, Kristin Ardlie, GTEx Project',\n",
      "             'label': 'Females (n=142) Mean Age 47.8 (range 21 - 70)',\n",
      "             'link': 'https://gtexportal.org/home/tissue/Uterus',\n",
      "             'provider_name': 'GTEx',\n",
      "             'provider_uuid': '083882bb-6cc6-4c12-a205-eac37c1a2640',\n",
      "             'samples': [{'@id': 'https://gtexportal.org/home/tissue/Uterus#FDonors_TissueBlock1',\n",
      "                          '@type': 'Sample',\n",
      "                          'datasets': [{'@id': 'https://gtexportal.org/home/tissue/Uterus#FDonors_TissueBlock1_TissueBlock1_Dataset1',\n",
      "                                        '@type': 'Dataset',\n",
      "                                        'description': 'Data/Assay Types: '\n",
      "                                                       'OTHER, ',\n",
      "                                        'label': 'Registered 0/25/2022, '\n",
      "                                                 'Kristin Ardlie, GTEx',\n",
      "                                        'link': 'https://gtexportal.org/home/tissue/Uterus',\n",
      "                                        'technology': 'OTHER',\n",
      "                                        'thumbnail': 'https://hubmapconsortium.github.io/hra-registrations/gtex/assets/logo.jpg'}],\n",
      "                          'description': '20 x 10 x 3 millimeter, 3 millimeter',\n",
      "                          'donor': 'https://gtexportal.org/home/tissue/Uterus#FDonors',\n",
      "                          'label': 'Registered 0/25/2022, Kristin Ardlie, GTEx',\n",
      "                          'link': 'https://gtexportal.org/home/tissue/Uterus',\n",
      "                          'rui_location': {'@id': 'http://purl.org/ccf/1.5/220036fa-2932-4f00-aad6-3f70c516c1c4',\n",
      "                                           '@type': 'SpatialEntity',\n",
      "                                           'ccf_annotations': ['http://purl.org/sig/ont/fma/fma17561',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma224876',\n",
      "                                                               'http://purl.org/sig/ont/fma/fma224878'],\n",
      "                                           'creation_date': '2022-01-26',\n",
      "                                           'creator': 'Kristin Ardlie',\n",
      "                                           'creator_first_name': 'Kristin',\n",
      "                                           'creator_last_name': 'Ardlie',\n",
      "                                           'dimension_units': 'millimeter',\n",
      "                                           'placement': {'@id': 'http://purl.org/ccf/1.5/220036fa-2932-4f00-aad6-3f70c516c1c4_placement',\n",
      "                                                         '@type': 'SpatialPlacement',\n",
      "                                                         'creation_date': '2022-01-26',\n",
      "                                                         'rotation_order': 'XYZ',\n",
      "                                                         'rotation_units': 'degree',\n",
      "                                                         'scaling_units': 'ratio',\n",
      "                                                         'source': 'http://purl.org/ccf/1.5/220036fa-2932-4f00-aad6-3f70c516c1c4',\n",
      "                                                         'target': 'http://purl.org/ccf/latest/ccf.owl#VHFUterus',\n",
      "                                                         'translation_units': 'millimeter',\n",
      "                                                         'x_rotation': -38,\n",
      "                                                         'x_scaling': 1,\n",
      "                                                         'x_translation': 26.774,\n",
      "                                                         'y_rotation': 0,\n",
      "                                                         'y_scaling': 1,\n",
      "                                                         'y_translation': 39.166,\n",
      "                                                         'z_rotation': 0,\n",
      "                                                         'z_scaling': 1,\n",
      "                                                         'z_translation': 50.848},\n",
      "                                           'x_dimension': 20,\n",
      "                                           'y_dimension': 10,\n",
      "                                           'z_dimension': 3},\n",
      "                          'sample_type': 'Tissue Block',\n",
      "                          'sections': []}],\n",
      "             'sex': 'Female'}]}\n"
     ]
    }
   ],
   "source": [
    "try: \n",
    "    api_response = api_instance.gtex_rui_locations(cache = False)\n",
    "    pprint(api_response)\n",
    "except hra_api_client.ApiException as e:\n",
    "    print(\"Exception when calling DefaultApi->aggregate_results: %s\\n\" % e)"
   ]
  },
  {
   "attachments": {},
   "cell_type": "markdown",
   "id": "1484a7ff",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='token_usage'></a>\n",
    "#### Token Usage"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "id": "a6157188",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "DatabaseStatus(status='Ready', checkback=3600000, load_time=22594, message='Database successfully loaded')\n"
     ]
    }
   ],
   "source": [
    "token = 'abbee123099245'\n",
    "result = api_instance.db_status(token=token)\n",
    "pprint(result)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "acbf417a",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='corridors'></a>\n",
    "#### Generate a 3D corridor"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "id": "4753f26a",
   "metadata": {},
   "outputs": [],
   "source": [
    "# Provide a RUI location via the RUI at https://apps.humanatlas.io/rui/\n",
    "extraction_site = {\n",
    "    \"@context\": \"https://hubmapconsortium.github.io/ccf-ontology/ccf-context.jsonld\",\n",
    "    \"@id\": \"http://purl.org/ccf/1.5/cc837df1-2788-4510-9c21-9eb0e9b310a5\",\n",
    "    \"@type\": \"SpatialEntity\",\n",
    "    \"creator\": \"demo demo\",\n",
    "    \"creator_first_name\": \"demo\",\n",
    "    \"creator_last_name\": \"demo\",\n",
    "    \"creation_date\": \"2024-08-20\",\n",
    "    \"ccf_annotations\": [\n",
    "        \"http://purl.obolibrary.org/obo/UBERON_0002015\",\n",
    "        \"http://purl.obolibrary.org/obo/UBERON_0002189\"\n",
    "    ],\n",
    "    \"x_dimension\": 10,\n",
    "    \"y_dimension\": 10,\n",
    "    \"z_dimension\": 10,\n",
    "    \"dimension_units\": \"millimeter\",\n",
    "    \"placement\": {\n",
    "        \"@context\": \"https://hubmapconsortium.github.io/ccf-ontology/ccf-context.jsonld\",\n",
    "        \"@id\": \"http://purl.org/ccf/1.5/cc837df1-2788-4510-9c21-9eb0e9b310a5_placement\",\n",
    "        \"@type\": \"SpatialPlacement\",\n",
    "        \"target\": \"https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary\",\n",
    "        \"placement_date\": \"2024-08-20\",\n",
    "        \"x_scaling\": 1,\n",
    "        \"y_scaling\": 1,\n",
    "        \"z_scaling\": 1,\n",
    "        \"scaling_units\": \"ratio\",\n",
    "        \"x_rotation\": 0,\n",
    "        \"y_rotation\": 0,\n",
    "        \"z_rotation\": 0,\n",
    "        \"rotation_order\": \"XYZ\",\n",
    "        \"rotation_units\": \"degree\",\n",
    "        \"x_translation\": 72.366,\n",
    "        \"y_translation\": 79.067,\n",
    "        \"z_translation\": 34.77,\n",
    "        \"translation_units\": \"millimeter\"\n",
    "    }\n",
    "}\n",
    "\n",
    "# POST the extraction site\n",
    "model = api_instance.corridor(extraction_site)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "09075bd6",
   "metadata": {},
   "source": [
    "Save corridor to file:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "id": "74fcb536",
   "metadata": {},
   "outputs": [],
   "source": [
    "corridor_file_name = \"corridor.glb\"\n",
    "\n",
    "# \"ab\" mode to append\n",
    "with open(corridor_file_name, \"wb\") as binary_file:\n",
    "\n",
    "    # Write bytes to file\n",
    "    binary_file.write(model)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a7c4fad1",
   "metadata": {},
   "source": [
    "##### Display with `pyvista`"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "fdb827fe",
   "metadata": {},
   "source": [
    "Make sure to run:\n",
    "`pip install \"pyvista[jupyter]\"`"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "id": "073db386",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "b1c1e72158834b96b84c206a2d0470a4",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Widget(value='<iframe src=\"http://localhost:51016/index.html?ui=P_0x1d8080edd00_0&reconnect=auto\" class=\"pyvis…"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "import pyvista\n",
    "from pyvista import examples\n",
    "from itkwidgets import view\n",
    "\n",
    "pl = pyvista.Plotter()\n",
    "pl.import_gltf(corridor_file_name)\n",
    "pl.camera.zoom(1.0)\n",
    "pl.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6ceb5a43",
   "metadata": {},
   "source": [
    "##### Display with `k3d`/`vtk`"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "id": "3d232ee1",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "1d8de8e9fe484f9aa803746df64d05ae",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Output()"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "import k3d\n",
    "import vtk\n",
    "import ipywidgets as widgets\n",
    "\n",
    "reader = vtk.vtkGLTFReader()\n",
    "reader.SetFileName(corridor_file_name)\n",
    "reader.Update()\n",
    "\n",
    "plot = k3d.plot()\n",
    "mb = reader.GetOutput()\n",
    "\n",
    "iterator = mb.NewIterator()\n",
    "\n",
    "vtk_polyobjects = []\n",
    "while not iterator.IsDoneWithTraversal():\n",
    "    item = iterator.GetCurrentDataObject()\n",
    "    vtk_polyobjects.append(item)\n",
    "    iterator.GoToNextItem()\n",
    "\n",
    "\n",
    "for obj in vtk_polyobjects:\n",
    "    plot += k3d.vtk_poly_data(obj, color=0x222222)\n",
    "plot.display()\n",
    "\n",
    "debug_info = widgets.HTML()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ebd70311",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='collision'></a>\n",
    "#### Mesh-Based Collision Detection"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "id": "8fe568bf",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "[{'AS_volume': 84566.46344970606,\n",
      "  'id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#VH_F_outer_cortex_of_kidney_R',\n",
      "  'intersection_volume': 366,\n",
      "  'is_closed': True,\n",
      "  'label': 'outer cortex of kidney',\n",
      "  'node_name': 'VH_F_outer_cortex_of_kidney_R',\n",
      "  'organ': 'https___cdn.humanatlas.io_digital-objects_ref-organ_kidney-female-right_v1.3_assets_3d-vh-f-kidney-r',\n",
      "  'percentage_of_AS': 0.004327956793625052,\n",
      "  'percentage_of_tissue_block': 0.366,\n",
      "  'representation_of': 'http://purl.obolibrary.org/obo/UBERON_0002189',\n",
      "  'tissue_volume': 1000},\n",
      " {'AS_volume': 10055.261678806379,\n",
      "  'id': 'https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#VH_F_kidney_capsule_R',\n",
      "  'intersection_volume': 87,\n",
      "  'is_closed': True,\n",
      "  'label': 'kidney capsule',\n",
      "  'node_name': 'VH_F_kidney_capsule_R',\n",
      "  'organ': 'https___cdn.humanatlas.io_digital-objects_ref-organ_kidney-female-right_v1.3_assets_3d-vh-f-kidney-r',\n",
      "  'percentage_of_AS': 0.008652186564509919,\n",
      "  'percentage_of_tissue_block': 0.087,\n",
      "  'representation_of': 'http://purl.obolibrary.org/obo/UBERON_0002015',\n",
      "  'tissue_volume': 1000}]\n"
     ]
    }
   ],
   "source": [
    "# Provide a RUI location via the RUI at https://apps.humanatlas.io/rui/\n",
    "extraction_site = {\n",
    "    \"@context\": \"https://hubmapconsortium.github.io/ccf-ontology/ccf-context.jsonld\",\n",
    "    \"@id\": \"http://purl.org/ccf/1.5/cc837df1-2788-4510-9c21-9eb0e9b310a5\",\n",
    "    \"@type\": \"SpatialEntity\",\n",
    "    \"creator\": \"demo demo\",\n",
    "    \"creator_first_name\": \"demo\",\n",
    "    \"creator_last_name\": \"demo\",\n",
    "    \"creation_date\": \"2024-08-20\",\n",
    "    \"ccf_annotations\": [\n",
    "        \"http://purl.obolibrary.org/obo/UBERON_0002015\",\n",
    "        \"http://purl.obolibrary.org/obo/UBERON_0002189\"\n",
    "    ],\n",
    "    \"x_dimension\": 10,\n",
    "    \"y_dimension\": 10,\n",
    "    \"z_dimension\": 10,\n",
    "    \"dimension_units\": \"millimeter\",\n",
    "    \"placement\": {\n",
    "        \"@context\": \"https://hubmapconsortium.github.io/ccf-ontology/ccf-context.jsonld\",\n",
    "        \"@id\": \"http://purl.org/ccf/1.5/cc837df1-2788-4510-9c21-9eb0e9b310a5_placement\",\n",
    "        \"@type\": \"SpatialPlacement\",\n",
    "        \"target\": \"https://purl.humanatlas.io/ref-organ/kidney-female-right/v1.3#primary\",\n",
    "        \"placement_date\": \"2024-08-20\",\n",
    "        \"x_scaling\": 1,\n",
    "        \"y_scaling\": 1,\n",
    "        \"z_scaling\": 1,\n",
    "        \"scaling_units\": \"ratio\",\n",
    "        \"x_rotation\": 0,\n",
    "        \"y_rotation\": 0,\n",
    "        \"z_rotation\": 0,\n",
    "        \"rotation_order\": \"XYZ\",\n",
    "        \"rotation_units\": \"degree\",\n",
    "        \"x_translation\": 72.366,\n",
    "        \"y_translation\": 79.067,\n",
    "        \"z_translation\": 34.77,\n",
    "        \"translation_units\": \"millimeter\"\n",
    "    }\n",
    "}\n",
    "\n",
    "# Get mesh-based collisions\n",
    "pprint(api_instance.collisions(extraction_site))"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "13760167",
   "metadata": {},
   "source": [
    "***\n",
    "<a id='3d_cell'></a>\n",
    "#### 3D Cell Generation"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 30,
   "id": "9773778c",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "          x         y         z Cell Type\n",
      "0  0.054368  0.257807 -0.105404      KEY1\n",
      "1  0.056308  0.277105 -0.112103      KEY2\n",
      "2  0.064050  0.283130 -0.118859      KEY2\n",
      "3  0.056092  0.282251 -0.119717      KEY2\n"
     ]
    }
   ],
   "source": [
    "# import pandas to convert API response into a DataFrame for easier downstream handling\n",
    "import pandas as pd\n",
    "\n",
    "# Create your request parameters\n",
    "params = {\n",
    "    \"file\": \"https://cdn.humanatlas.io/digital-objects/ref-organ/kidney-female-left/v1.3/assets/3d-vh-f-kidney-l.glb\",\n",
    "    \"file_subpath\": \"VH_F_renal_pyramid_L_a\",\n",
    "    \"num_nodes\": 10,\n",
    "    \"node_distribution\": {\n",
    "        \"KEY1\": 0.1,\n",
    "        \"KEY2\": 0.3\n",
    "    }\n",
    "}\n",
    "\n",
    "# The result is a list of objects with x, y, z positions and types, accoording to the distribution and number of nodes specified in the parameters\n",
    "response = api_instance.mesh3d_cell_population(params)\n",
    "\n",
    "# Convert to string\n",
    "as_string = str(response, 'utf-8')\n",
    "\n",
    "# Convert the string to a DataFrame\n",
    "df = pd.read_csv(StringIO(as_string))\n",
    "\n",
    "# Display the DataFrame\n",
    "print(df)"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.12.4"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
