diff --git a/common/constants.js b/common/constants.js
index e30caaa6ac365ed3e0ad5780d93070a2357776f6..5734896dff5a3729ddd0a0c244af30df0ce8a0c4 100644
--- a/common/constants.js
+++ b/common/constants.js
@@ -69,6 +69,12 @@
     TEMPLATE_NOT_FOUND: `Template not found. Maybe it is still loading. Try again in a few seconds?`,
     PARC_NOT_FOUND: ``,
 
-    PINNED_DATASETS_BADGE_DESC: `Number of pinned datasets`
+    PINNED_DATASETS_BADGE_DESC: `Number of pinned datasets`,
+
+    GDPR_TEXT: `This dataset is currently reviewed by the EBRAINS Data Protection Office regarding GDPR compliance. Therefore the atlas does not provide access to the underlying data files yet. The data will be available after this review.`,
+
+    RECEPTOR_FP_CAPTION: `The receptor densities are visualized as fingerprints (fp), which provide the mean density and standard deviation for each of the analyzed receptor types, averaged across samples.`,
+    RECEPTOR_PR_CAPTION: `For a single tissue sample, an exemplary density distribution for a single receptor from the pial surface to the border between layer VI and the white matter.`,
+    RECEPTOR_AR_CAPTION: `An exemplary density distribution of a single receptor for one laminar cross-section in a single tissue sample.`,
   }
 })(typeof exports === 'undefined' ? module.exports : exports)
diff --git a/package.json b/package.json
index 81cd549b87d5e2ec833087f961ea921c153b79d6..aa5a9d92d5c9578622a44e5e9e81cb46f7fdb146 100644
--- a/package.json
+++ b/package.json
@@ -87,7 +87,7 @@
     "@ngrx/effects": "^9.1.1",
     "@ngrx/store": "^9.1.1",
     "@types/node": "12.12.39",
-    "export-nehuba": "0.0.2",
+    "export-nehuba": "0.0.4",
     "hbp-connectivity-component": "^0.3.18",
     "zone.js": "^0.10.2"
   }
diff --git a/src/atlasViewer/atlasViewer.apiService.service.ts b/src/atlasViewer/atlasViewer.apiService.service.ts
index d4872bb8221e35bd018b7d6e906c54979f788a25..75c5e5a231f25784773cb95a2941ed4692b2c834 100644
--- a/src/atlasViewer/atlasViewer.apiService.service.ts
+++ b/src/atlasViewer/atlasViewer.apiService.service.ts
@@ -1,5 +1,6 @@
 /* eslint-disable @typescript-eslint/no-empty-function */
 import {Injectable, NgZone, Optional, Inject, OnDestroy, InjectionToken} from "@angular/core";
+import { MatSnackBar } from "@angular/material/snack-bar";
 import { select, Store } from "@ngrx/store";
 import { Observable, Subject, Subscription, from, race, of, } from "rxjs";
 import { distinctUntilChanged, map, filter, startWith, switchMap, catchError, mapTo, take } from "rxjs/operators";
@@ -12,6 +13,7 @@ import {
   IavRootStoreInterface,
   safeFilter
 } from "src/services/stateStore.service";
+import { FRAGMENT_EMIT_RED } from "src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component";
 import { ClickInterceptor, CLICK_INTERCEPTOR_INJECTOR } from "src/util";
 import { ModalHandler } from "../util/pluginHandlerClasses/modalHandler";
 import { ToastHandler } from "../util/pluginHandlerClasses/toastHandler";
@@ -35,12 +37,21 @@ interface IGetUserSelectRegionPr{
 export const CANCELLABLE_DIALOG = 'CANCELLABLE_DIALOG'
 export const GET_TOAST_HANDLER_TOKEN = 'GET_TOAST_HANDLER_TOKEN'
 
+export interface ILoadMesh {
+  type: 'VTK'
+  id: string
+  url: string
+}
+export const LOAD_MESH_TOKEN = new InjectionToken<(loadMeshParam: ILoadMesh) => void>('LOAD_MESH_TOKEN')
+
 @Injectable({
-  providedIn : 'root',
+  providedIn : 'root'
 })
 
 export class AtlasViewerAPIServices implements OnDestroy{
 
+  public loadMesh$ = new Subject<ILoadMesh>()
+
   private onDestoryCb: Function[] = []
   private loadedTemplates$: Observable<any>
   private selectParcellation$: Observable<any>
@@ -146,6 +157,7 @@ export class AtlasViewerAPIServices implements OnDestroy{
   constructor(
     private store: Store<IavRootStoreInterface>,
     private dialogService: DialogService,
+    private snackbar: MatSnackBar,
     private zone: NgZone,
     private pluginService: PluginServices,
     @Optional() @Inject(CANCELLABLE_DIALOG) openCancellableDialog: (message: string, options: any) => () => void,
@@ -367,6 +379,21 @@ export class AtlasViewerAPIServices implements OnDestroy{
       this.interactiveViewer.metadata.regionsLabelIndexMap = getLabelIndexMap(parcellation.regions)
       this.interactiveViewer.metadata.layersRegionLabelIndexMap = getMultiNgIdsRegionsLabelIndexMap(parcellation)
     })
+
+    this.s.push(
+      this.loadMesh$.subscribe(({ url, id, type }) => {
+        if (!this.interactiveViewer.viewerHandle) {
+          this.snackbar.open('No atlas loaded! Loading mesh failed!', 'Dismiss')
+        }
+        this.interactiveViewer.viewerHandle?.loadLayer({
+          [id]: {
+            type: 'mesh',
+            source: `vtk://${url}`,
+            shader: `void main(){${FRAGMENT_EMIT_RED};}`
+          }
+        })
+      })
+    )
   }
 
   ngOnDestroy(){
diff --git a/src/atlasViewer/atlasViewer.constantService.service.ts b/src/atlasViewer/atlasViewer.constantService.service.ts
index f435d07bed178da1c42a14bb1af88ca84818a4ed..b6e8358f72470566bf4350d61a78860038edf30c 100644
--- a/src/atlasViewer/atlasViewer.constantService.service.ts
+++ b/src/atlasViewer/atlasViewer.constantService.service.ts
@@ -73,8 +73,6 @@ export class AtlasViewerConstantsServices implements OnDestroy {
   public spatialResultsPerPage = 10
   public spatialWidth = 600
 
-  public landmarkFlatProjection: boolean = false
-
   public chartBaseStyle = {
     fill : 'origin',
   }
diff --git a/src/atlasViewer/atlasViewer.workerService.service.ts b/src/atlasViewer/atlasViewer.workerService.service.ts
index c5e222480facb343ec0d02b1ad8bca75ce486abb..17204cb05224dc78887f74cdae74ab9699ba6ec8 100644
--- a/src/atlasViewer/atlasViewer.workerService.service.ts
+++ b/src/atlasViewer/atlasViewer.workerService.service.ts
@@ -1,4 +1,6 @@
 import { Injectable } from "@angular/core";
+import { fromEvent } from "rxjs";
+import { filter, take } from "rxjs/operators";
 
 /* telling webpack to pack the worker file */
 import '../util/worker.js'
@@ -8,10 +10,32 @@ import '../util/worker.js'
  */
 export const worker = new Worker('worker.js')
 
+interface IWorkerMessage {
+  method: string
+  param: any
+}
+
 @Injectable({
   providedIn: 'root',
 })
 
 export class AtlasWorkerService {
   public worker = worker
+
+  async sendMessage(data: IWorkerMessage){
+
+    const newUuid = crypto.getRandomValues(new Uint32Array(1))[0].toString(16)
+    this.worker.postMessage({
+      id: newUuid,
+      ...data
+    })
+    const message = await fromEvent(this.worker, 'message').pipe(
+      filter((message: MessageEvent) => message.data.id && message.data.id === newUuid),
+      take(1)
+    ).toPromise()
+    
+    const { data: returnData } = message as MessageEvent
+    const { id, ...rest } = returnData
+    return rest
+  }
 }
diff --git a/src/atlasViewer/pluginUnit/atlasViewer.pluginService.service.ts b/src/atlasViewer/pluginUnit/atlasViewer.pluginService.service.ts
index ff1264528a849463487777f6445d63b90335e132..dff1231817ccc94cd2e8f59b0f5ed5fcd1765179 100644
--- a/src/atlasViewer/pluginUnit/atlasViewer.pluginService.service.ts
+++ b/src/atlasViewer/pluginUnit/atlasViewer.pluginService.service.ts
@@ -1,10 +1,10 @@
 import { HttpClient } from '@angular/common/http'
-import { ComponentFactory, ComponentFactoryResolver, Injectable, ViewContainerRef, Inject } from "@angular/core";
+import { ComponentFactory, ComponentFactoryResolver, Injectable, ViewContainerRef, Inject, InjectionToken } from "@angular/core";
 import { PLUGINSTORE_ACTION_TYPES } from "src/services/state/pluginState.store";
 import { IavRootStoreInterface, isDefined } from 'src/services/stateStore.service'
 import { PluginUnit } from "./pluginUnit.component";
 import { select, Store } from "@ngrx/store";
-import { BehaviorSubject, merge, Observable, of, zip } from "rxjs";
+import { BehaviorSubject, merge, Observable, of, Subject, zip } from "rxjs";
 import { filter, map, shareReplay, switchMap, catchError } from "rxjs/operators";
 import { LoggingService } from 'src/logging';
 import { PluginHandler } from 'src/util/pluginHandler';
diff --git a/src/main.module.ts b/src/main.module.ts
index 3cc29399b3f96f5f9a7784197c66c8f62e436886..a87d7e6d8fa662263b04876717cbcd98a0c480b0 100644
--- a/src/main.module.ts
+++ b/src/main.module.ts
@@ -1,6 +1,6 @@
 import { DragDropModule } from '@angular/cdk/drag-drop'
 import { CommonModule } from "@angular/common";
-import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from "@angular/core";
+import { CUSTOM_ELEMENTS_SCHEMA, InjectionToken, NgModule } from "@angular/core";
 import { FormsModule } from "@angular/forms";
 import { StoreModule, ActionReducer } from "@ngrx/store";
 import { AngularMaterialModule } from 'src/ui/sharedModules/angularMaterial.module'
@@ -14,7 +14,7 @@ import { GetNamesPipe } from "./util/pipes/getNames.pipe";
 
 import { HttpClientModule } from "@angular/common/http";
 import { EffectsModule } from "@ngrx/effects";
-import { AtlasViewerAPIServices, CANCELLABLE_DIALOG, GET_TOAST_HANDLER_TOKEN, API_SERVICE_SET_VIEWER_HANDLE_TOKEN, setViewerHandleFactory } from "./atlasViewer/atlasViewer.apiService.service";
+import { AtlasViewerAPIServices, CANCELLABLE_DIALOG, GET_TOAST_HANDLER_TOKEN, API_SERVICE_SET_VIEWER_HANDLE_TOKEN, setViewerHandleFactory, LOAD_MESH_TOKEN, ILoadMesh } from "./atlasViewer/atlasViewer.apiService.service";
 import { AtlasWorkerService } from "./atlasViewer/atlasViewer.workerService.service";
 import { ModalUnit } from "./atlasViewer/modalUnit/modalUnit.component";
 import { TransformOnhoverSegmentPipe } from "./atlasViewer/onhoverSegment.pipe";
@@ -242,6 +242,15 @@ export function debug(reducer: ActionReducer<any>): ActionReducer<any> {
       deps: [
         ClickInterceptorService
       ]
+    },
+    {
+      provide: LOAD_MESH_TOKEN,
+      useFactory: (apiService: AtlasViewerAPIServices) => {
+        return (loadMeshParam: ILoadMesh) => apiService.loadMesh$.next(loadMeshParam)
+      },
+      deps: [
+        AtlasViewerAPIServices
+      ]
     }
   ],
   bootstrap : [
diff --git a/src/messaging/module.ts b/src/messaging/module.ts
index ac8e266a422deb02734662b51bcfb402e99c1971..9e5152f3d6c62c9aa8442aab8362ab1d964f4bb6 100644
--- a/src/messaging/module.ts
+++ b/src/messaging/module.ts
@@ -1,6 +1,9 @@
-import { NgModule, Optional } from "@angular/core";
+import { Inject, NgModule, Optional } from "@angular/core";
 import { MatDialog } from "@angular/material/dialog";
+import { MatSnackBar } from "@angular/material/snack-bar";
 import { AtlasViewerAPIServices } from "src/atlasViewer/atlasViewer.apiService.service";
+import { AtlasWorkerService } from "src/atlasViewer/atlasViewer.workerService.service";
+import { LOAD_MESH_TOKEN, ILoadMesh } from "src/atlasViewer/atlasViewer.apiService.service";
 import { ComponentsModule } from "src/components";
 import { ConfirmDialogComponent } from "src/components/confirmDialog/confirmDialog.component";
 import { AngularMaterialModule } from "src/ui/sharedModules/angularMaterial.module";
@@ -21,7 +24,10 @@ export class MesssagingModule{
 
   constructor(
     private dialog: MatDialog,
-    @Optional() private apiService: AtlasViewerAPIServices
+    private snackbar: MatSnackBar,
+    private worker: AtlasWorkerService,
+    @Optional() private apiService: AtlasViewerAPIServices,
+    @Optional() @Inject(LOAD_MESH_TOKEN) private loadMesh: (loadMeshParam: ILoadMesh) => void
   ){
 
     window.addEventListener('message', async ({ data, origin, source }) => {
@@ -83,7 +89,6 @@ export class MesssagingModule{
   }
 
   async processMessage({ method, param }){
-    console.log({ method, param })
 
     if (method === 'dummyMethod') {
       return 'OK'
@@ -99,6 +104,27 @@ export class MesssagingModule{
       return 'OK'
     }
 
+    if (method === '_tmp:plotly') {
+      const isLoadingSnack = this.snackbar.open(`Loading plotly mesh ...`)
+      const resp = await this.worker.sendMessage({
+        method: `PROCESS_PLOTLY`,
+        param
+      })
+      isLoadingSnack?.dismiss()
+      const meshId = 'bobby'
+      if (this.loadMesh) {
+        const { objectUrl } = resp.result || {}
+        this.loadMesh({
+          type: 'VTK',
+          id: meshId,
+          url: objectUrl
+        })
+      } else {
+        this.snackbar.open(`Error: loadMesh method not injected.`)
+      }
+      return 'OK'
+    }
+
     throw ({ code: 404, message: 'Method not found' })
   }
 
diff --git a/src/res/css/extra_styles.css b/src/res/css/extra_styles.css
index e6e394ac82a97772f934c078c3d065e96dae846c..081fa25ea672331dbdb2509fcaf98e891028bbf8 100644
--- a/src/res/css/extra_styles.css
+++ b/src/res/css/extra_styles.css
@@ -530,6 +530,11 @@ markdown-dom pre code
   background: none!important;
 }
 
+.bg-50-grey-20
+{
+  background-color: rgba(128,128,128, 0.2);
+}
+
 .dot
 {
   width: 0.5rem;
diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json
index f1fd5865935f3a9920e951ff9c6f794a8deba195..4ff6635b1263ae0cf56f78c00f762747e866dda6 100644
--- a/src/res/ext/MNI152.json
+++ b/src/res/ext/MNI152.json
@@ -9,6 +9,15508 @@
   "ngId": "mni152",
   "nehubaConfigURL": "nehubaConfig/MNI152NehubaConfig",
   "parcellations": [
+    {
+      "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+      "name": "Cytoarchitectonic Maps - v2.5.1",
+      "auxillaryMeshIndices": [
+        65535
+      ],
+      "hasAdditionalViewMode": [],
+      "originDatasets": [
+        {
+          "kgSchema": "minds/core/dataset/v1.0.0",
+          "kgId": "5249afa7-5e04-4ffd-8039-c3a9231f717c"
+        }
+      ],
+      "properties": {
+        "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI ICBM 2009c Asymmetric as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.",
+        "publications": [
+          {
+            "doi": "https://doi.org/10.1038/nrn2776",
+            "citation": "Zilles K, Amunts K (2010) Centenary of Brodmann’s map – conception and fate. Nature Reviews Neuroscience 11(2): 139-145 "
+          },
+          {
+            "doi": "https://doi.org/10.1016/j.neuroimage.2007.02.037",
+            "citation": "Amunts K, Schleicher A, Zilles K (2007) Cytoarchitecture of the cerebral cortex – more than localization. Neuroimage 37: 1061-1065"
+          },
+          {
+            "doi": "http://dx.doi.org/10.1016/B978-012693019-1/50023-X",
+            "citation": "Zilles K, Schleicher A, Palomero-Gallagher N, Amunts K (2002) Quantitative analysis of cyto- and receptor architecture of the human brain. In: /Brain Mapping: The Methods/, J. C. Mazziotta and A. Toga (eds.), USA: Elsevier, 2002, p. 573-602."
+          }
+        ]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "children": [
+            {
+              "name": "cerebral nuclei",
+              "children": [
+                {
+                  "name": "basal forebrain",
+                  "children": [
+                    {
+                      "name": "magnocellular group within septum",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "left hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "right hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "sublenticular part of basal forebrain",
+                      "children": [
+                        {
+                          "name": "Ch 4 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "status": "left hemisphere",
+                              "labelIndex": 97,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "791a14c8-b899-414f-b237-27574a4cce7e"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "status": "right hemisphere",
+                              "labelIndex": 97,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 4 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "791a14c8-b899-414f-b237-27574a4cce7e"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "arealabel": "Ch-4",
+                              "status": "publicP",
+                              "labelIndex": "264",
+                              "doi": "https://doi.org/10.25493/VZJ5-8WJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "magnocellular group within horizontal limb of diagnoal band",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "left hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "right hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "amygdala",
+                  "children": [
+                    {
+                      "name": "laterobasal group",
+                      "children": [
+                        {
+                          "name": "LB (Amygdala)",
+                          "children": [
+                            {
+                              "name": "LB (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 41,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "LB (Amygdala) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf"
+                                }
+                              }
+                            },
+                            {
+                              "name": "LB (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 41,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "LB (Amygdala) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "LB (Amygdala)",
+                              "arealabel": "LB",
+                              "status": "publicP",
+                              "labelIndex": "187",
+                              "doi": "https://doi.org/10.25493/C3X0-NV3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superficial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "SF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "SF (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 5,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "SF (Amygdala) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "48929163-bf7b-4471-9f14-991c5225eced"
+                                }
+                              }
+                            },
+                            {
+                              "name": "SF (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 5,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "SF (Amygdala) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "48929163-bf7b-4471-9f14-991c5225eced"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "SF (Amygdala)",
+                              "arealabel": "SF",
+                              "status": "publicP",
+                              "labelIndex": "185",
+                              "doi": "https://doi.org/10.25493/WD31-SEA",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fiber masses",
+                      "children": [
+                        {
+                          "name": "VTM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "VTM (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 109,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "VTM (Amygdala) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2"
+                                }
+                              }
+                            },
+                            {
+                              "name": "VTM (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 109,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "VTM (Amygdala) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "VTM (Amygdala)",
+                              "arealabel": "VTM",
+                              "status": "publicP",
+                              "labelIndex": "228",
+                              "doi": "https://doi.org/10.25493/99HN-XRE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "IF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "IF (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 46,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "IF (Amygdala) [v8.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07"
+                                }
+                              }
+                            },
+                            {
+                              "name": "IF (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 46,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "IF (Amygdala) [v8.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "IF (Amygdala)",
+                              "arealabel": "IF",
+                              "status": "publicP",
+                              "labelIndex": "237",
+                              "doi": "https://doi.org/10.25493/GWPR-G6K",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "MF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "MF (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 123,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "MF (Amygdala) [v8.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca"
+                                }
+                              }
+                            },
+                            {
+                              "name": "MF (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 123,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "MF (Amygdala) [v8.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "MF (Amygdala)",
+                              "arealabel": "MF",
+                              "status": "publicP",
+                              "labelIndex": "235",
+                              "doi": "https://doi.org/10.25493/9375-55V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "centromedial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "name": "cerebral cortex",
+              "children": [
+                {
+                  "name": "parietal lobe",
+                  "children": [
+                    {
+                      "name": "superior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area 5L (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5L (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 83,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "98"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5L (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff"
+                                }
+                              ],
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5L (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 83,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "97"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5L (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff"
+                                }
+                              ],
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5L (SPL)",
+                              "arealabel": "Area-5L",
+                              "status": "publicP",
+                              "labelIndex": "130",
+                              "doi": "https://doi.org/10.25493/C1FQ-2F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7M (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 124,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7M (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1715e680-a492-49a2-8f54-025aa41819da"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158"
+                              }
+                            },
+                            {
+                              "name": "Area 7M (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 124,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7M (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1715e680-a492-49a2-8f54-025aa41819da"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7M (SPL)",
+                              "arealabel": "Area-7M",
+                              "status": "publicP",
+                              "labelIndex": "135",
+                              "doi": "https://doi.org/10.25493/F25F-EKW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7PC (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 4,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7PC (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 4,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7PC (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7PC (SPL)",
+                              "arealabel": "Area-7PC",
+                              "status": "publicP",
+                              "labelIndex": "132",
+                              "doi": "https://doi.org/10.25493/Z45N-1T",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5M (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 26,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "97"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5M (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5M (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 26,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "98"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5M (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5M (SPL)",
+                              "arealabel": "Area-5M",
+                              "status": "publicP",
+                              "labelIndex": "131",
+                              "doi": "https://doi.org/10.25493/Y12F-YMU",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7P (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7P (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 24,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "35"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7P (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476"
+                                }
+                              ],
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7P (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 24,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "36"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7P (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476"
+                                }
+                              ],
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7P (SPL)",
+                              "arealabel": "Area-7P",
+                              "status": "publicP",
+                              "labelIndex": "208",
+                              "doi": "https://doi.org/10.25493/C3HS-8R7",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5Ci (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 88,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5Ci (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651"
+                                }
+                              ],
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 88,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5Ci (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651"
+                                }
+                              ],
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5Ci (SPL)",
+                              "arealabel": "Area-5Ci",
+                              "status": "publicP",
+                              "labelIndex": "136",
+                              "doi": "https://doi.org/10.25493/SQVP-GK1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7A (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7A (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 17,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7A (SPL) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2635688-3894-471f-88db-c065871582de"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7A (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 17,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7A (SPL) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2635688-3894-471f-88db-c065871582de"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7A (SPL)",
+                              "arealabel": "Area-7A",
+                              "status": "publicP",
+                              "labelIndex": "134",
+                              "doi": "https://doi.org/10.25493/7HX2-AJH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parietal operculum",
+                      "children": [
+                        {
+                          "name": "Area OP3 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 22,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP3 (POperc) [v12.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 22,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP3 (POperc) [v12.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP3 (POperc)",
+                              "arealabel": "Area-OP3",
+                              "status": "publicP",
+                              "labelIndex": "75",
+                              "doi": "https://doi.org/10.25493/1Z8F-PX4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP4 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 14,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP4 (POperc) [v12.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "55213785-8693-438c-8f6b-7628609b4017"
+                                }
+                              ],
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 14,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP4 (POperc) [v12.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "55213785-8693-438c-8f6b-7628609b4017"
+                                }
+                              ],
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP4 (POperc)",
+                              "arealabel": "Area-OP4",
+                              "status": "publicP",
+                              "labelIndex": "72",
+                              "doi": "https://doi.org/10.25493/BVT0-H3U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP2 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 122,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP2 (POperc) [v12.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8"
+                                }
+                              ],
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 122,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP2 (POperc) [v12.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8"
+                                }
+                              ],
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP2 (POperc)",
+                              "arealabel": "Area-OP2",
+                              "status": "publicP",
+                              "labelIndex": "74",
+                              "doi": "https://doi.org/10.25493/5KBV-36J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP1 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 1,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "56"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP1 (POperc) [v12.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "402ec28d-0809-4226-91a4-900d9303291b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 1,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "57"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP1 (POperc) [v12.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "402ec28d-0809-4226-91a4-900d9303291b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP1 (POperc)",
+                              "arealabel": "Area-OP1",
+                              "status": "publicP",
+                              "labelIndex": "73",
+                              "doi": "https://doi.org/10.25493/SH37-979",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "postcentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 3b (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 37,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3b (PostCG) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 37,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3b (PostCG) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3b (PostCG)",
+                              "arealabel": "Area-3b",
+                              "status": "publicP",
+                              "labelIndex": "127",
+                              "doi": "https://doi.org/10.25493/2JK3-QXR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 1 (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 116,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 1 (PostCG) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9"
+                                }
+                              ],
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 116,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 1 (PostCG) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9"
+                                }
+                              ],
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 1 (PostCG)",
+                              "arealabel": "Area-1",
+                              "status": "publicP",
+                              "labelIndex": "125",
+                              "doi": "https://doi.org/10.25493/THB5-B64",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 2 (PostCS)",
+                          "children": [
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 49,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 2 (PostCS) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e81716df-d1ab-417b-b69c-3da566aab026"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 49,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 2 (PostCS) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e81716df-d1ab-417b-b69c-3da566aab026"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 2 (PostCS)",
+                              "arealabel": "Area-2",
+                              "status": "publicP",
+                              "labelIndex": "252",
+                              "doi": "https://doi.org/10.25493/QA8F-DD2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 3a (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 121,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3a (PostCG) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf"
+                                }
+                              ],
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 121,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3a (PostCG) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf"
+                                }
+                              ],
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3a (PostCG)",
+                              "arealabel": "Area-3a",
+                              "status": "publicP",
+                              "labelIndex": "126",
+                              "doi": "https://doi.org/10.25493/C5QQ-EFB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area PF (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PF (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 12,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "5"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PF (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PF (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 12,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "4"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PF (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PF (IPL)",
+                              "arealabel": "Area-PF",
+                              "status": "publicP",
+                              "labelIndex": "206",
+                              "doi": "https://doi.org/10.25493/F1TJ-54W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFcm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 103,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFcm (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03520da2-e553-4284-84e4-d8b293446cd4"
+                                }
+                              ],
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 103,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFcm (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03520da2-e553-4284-84e4-d8b293446cd4"
+                                }
+                              ],
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFcm (IPL)",
+                              "arealabel": "Area-PFcm",
+                              "status": "publicP",
+                              "labelIndex": "113",
+                              "doi": "https://doi.org/10.25493/8DP8-8HE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGa (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGa (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 81,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGa (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc"
+                                }
+                              ],
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGa (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 81,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGa (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc"
+                                }
+                              ],
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGa (IPL)",
+                              "arealabel": "Area-PGa",
+                              "status": "publicP",
+                              "labelIndex": "110",
+                              "doi": "https://doi.org/10.25493/V5HY-XTS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFt (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFt (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 20,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFt (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b5375459-2b03-4c67-a125-25c923180017"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "847cef50-7340-470d-8580-327b4ce9db19"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFt (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 20,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFt (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b5375459-2b03-4c67-a125-25c923180017"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "847cef50-7340-470d-8580-327b4ce9db19"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFt (IPL)",
+                              "arealabel": "Area-PFt",
+                              "status": "publicP",
+                              "labelIndex": "109",
+                              "doi": "https://doi.org/10.25493/JGM9-ZET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFm (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 102,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFm (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0"
+                                }
+                              ],
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "411edde9-685f-464b-970c-a929f9a4067c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFm (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 102,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFm (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0"
+                                }
+                              ],
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "411edde9-685f-464b-970c-a929f9a4067c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFm (IPL)",
+                              "arealabel": "Area-PFm",
+                              "status": "publicP",
+                              "labelIndex": "112",
+                              "doi": "https://doi.org/10.25493/TB94-HRK",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGp (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGp (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 65,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGp (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96"
+                                }
+                              ],
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGp (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 65,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGp (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96"
+                                }
+                              ],
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGp (IPL)",
+                              "arealabel": "Area-PGp",
+                              "status": "publicP",
+                              "labelIndex": "108",
+                              "doi": "https://doi.org/10.25493/FPFJ-ZCD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFop (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFop (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 94,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "114"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFop (IPL) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f"
+                                }
+                              ],
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8262e56-88fe-4006-b078-def4d78416b8"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFop (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 94,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "115"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFop (IPL) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f"
+                                }
+                              ],
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8262e56-88fe-4006-b078-def4d78416b8"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFop (IPL)",
+                              "arealabel": "Area-PFop",
+                              "status": "publicP",
+                              "labelIndex": "111",
+                              "doi": "https://doi.org/10.25493/M2PM-92Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 69,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 69,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hPO1 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hPO1 (POS)",
+                              "arealabel": "Area-hPO1",
+                              "status": "publicP",
+                              "labelIndex": "297",
+                              "doi": "https://doi.org/10.25493/W50A-FAP",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "intraparietal sulcus",
+                      "children": [
+                        {
+                          "name": "Area hIP1 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 32,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP1 (IPS) [v7.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3367db70-cd25-4834-9646-9604308dfa02"
+                                }
+                              ],
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 32,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP1 (IPS) [v7.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3367db70-cd25-4834-9646-9604308dfa02"
+                                }
+                              ],
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP1 (IPS)",
+                              "arealabel": "Area-hIP1",
+                              "status": "publicP",
+                              "labelIndex": "128",
+                              "doi": "https://doi.org/10.25493/92FE-7S6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 35,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "120"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "aff5df97-f341-4370-97af-58d9f40c9877"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 35,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "120"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP7 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "aff5df97-f341-4370-97af-58d9f40c9877"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP7 (IPS)",
+                              "arealabel": "Area-hIP7",
+                              "status": "publicP",
+                              "labelIndex": "296",
+                              "doi": "https://doi.org/10.25493/WRCY-8Z1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP3 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 75,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "43"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP3 (IPS) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93"
+                                }
+                              ],
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "700ac6db-870d-44f1-8786-0c01207f992b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 75,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "43"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP3 (IPS) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93"
+                                }
+                              ],
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "700ac6db-870d-44f1-8786-0c01207f992b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP3 (IPS)",
+                              "arealabel": "Area-hIP3",
+                              "status": "publicP",
+                              "labelIndex": "133",
+                              "doi": "https://doi.org/10.25493/P8X0-V1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP2 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 59,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP2 (IPS) [v7.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61"
+                                }
+                              ],
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 59,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP2 (IPS) [v7.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61"
+                                }
+                              ],
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP2 (IPS)",
+                              "arealabel": "Area-hIP2",
+                              "status": "publicP",
+                              "labelIndex": "129",
+                              "doi": "https://doi.org/10.25493/EJTM-NDY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 115,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46"
+                                }
+                              ],
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 115,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP4 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46"
+                                }
+                              ],
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP4 (IPS)",
+                              "arealabel": "Area-hIP4",
+                              "status": "publicP",
+                              "labelIndex": "294",
+                              "doi": "https://doi.org/10.25493/TSEN-QSY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 7,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "24b2682f-5c82-4439-8278-bc526b530030"
+                                }
+                              ],
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 7,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP5 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "24b2682f-5c82-4439-8278-bc526b530030"
+                                }
+                              ],
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP5 (IPS)",
+                              "arealabel": "Area-hIP5",
+                              "status": "publicP",
+                              "labelIndex": "295",
+                              "doi": "https://doi.org/10.25493/RNSM-Y4Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 95,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80"
+                                }
+                              ],
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 95,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP6 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80"
+                                }
+                              ],
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP6 (IPS)",
+                              "arealabel": "Area-hIP6",
+                              "status": "publicP",
+                              "labelIndex": "292",
+                              "doi": "https://doi.org/10.25493/AFQR-50Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP8 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 50,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2dba112f-075c-4dba-813d-e408ff429586"
+                                }
+                              ],
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 50,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP8 (IPS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2dba112f-075c-4dba-813d-e408ff429586"
+                                }
+                              ],
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP8 (IPS)",
+                              "arealabel": "Area-hIP8",
+                              "status": "publicP",
+                              "labelIndex": "293",
+                              "doi": "https://doi.org/10.25493/YYT8-FT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "occiptal lobe",
+                  "children": [
+                    {
+                      "name": "dorsal occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc6 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 72,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 72,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc6 (POS) [v7.1, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc6 (POS)",
+                              "arealabel": "Area-hOc6",
+                              "status": "publicP",
+                              "labelIndex": "291",
+                              "doi": "https://doi.org/10.25493/4101-1ZG",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 44,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4d (Cuneus) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "704230e3-434b-45d7-875c-05600272f01a"
+                                }
+                              ],
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8120426c-f65b-4426-8a58-3060e2334921"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 44,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4d (Cuneus) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "704230e3-434b-45d7-875c-05600272f01a"
+                                }
+                              ],
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8120426c-f65b-4426-8a58-3060e2334921"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4d (Cuneus)",
+                              "arealabel": "Area-hOc4d",
+                              "status": "publicP",
+                              "labelIndex": "119",
+                              "doi": "https://doi.org/10.25493/VSK5-DET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc3d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 106,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "81"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3d (Cuneus) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 106,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "82"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3d (Cuneus) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3d (Cuneus)",
+                              "arealabel": "Area-hOc3d",
+                              "status": "publicP",
+                              "labelIndex": "120",
+                              "doi": "https://doi.org/10.25493/F9X3-JVJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "ventral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc3v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 77,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3v (LingG) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625"
+                                }
+                              ],
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 77,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3v (LingG) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625"
+                                }
+                              ],
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3v (LingG)",
+                              "arealabel": "Area-hOc3v",
+                              "status": "publicP",
+                              "labelIndex": "10",
+                              "doi": "https://doi.org/10.25493/E5E8-1VV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 58,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "115"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4v (LingG) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 58,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "114"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4v (LingG) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4v (LingG)",
+                              "arealabel": "Area-hOc4v",
+                              "status": "publicP",
+                              "labelIndex": "9",
+                              "doi": "https://doi.org/10.25493/AASR-M8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "children": [
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "status": "left hemisphere",
+                              "labelIndex": 21,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc2 (V2, 18) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0"
+                                }
+                              ],
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "04674a3c-bb3a-495e-a466-206355e630bd"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "status": "right hemisphere",
+                              "labelIndex": 21,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc2 (V2, 18) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0"
+                                }
+                              ],
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "04674a3c-bb3a-495e-a466-206355e630bd"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc2 (V2, 18)",
+                              "arealabel": "Area-hOc2",
+                              "status": "publicP",
+                              "labelIndex": "7",
+                              "doi": "https://doi.org/10.25493/QG9C-THD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "children": [
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 120,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc1 (V1, 17, CalcS) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07"
+                                }
+                              ],
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 120,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc1 (V1, 17, CalcS) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07"
+                                }
+                              ],
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "arealabel": "Area-hOc1",
+                              "status": "publicP",
+                              "labelIndex": "8",
+                              "doi": "https://doi.org/10.25493/MXJ6-6DH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc4lp (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 51,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4lp (LOC) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697"
+                                }
+                              ],
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 51,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4lp (LOC) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697"
+                                }
+                              ],
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4lp (LOC)",
+                              "arealabel": "Area-hOc4lp",
+                              "status": "publicP",
+                              "labelIndex": "117",
+                              "doi": "https://doi.org/10.25493/4B87-Q8X",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc5 (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 16,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "106"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc5 (LOC) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 16,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "107"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc5 (LOC) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc5 (LOC)",
+                              "arealabel": "Area-hOc5",
+                              "status": "publicP",
+                              "labelIndex": "6",
+                              "doi": "https://doi.org/10.25493/2WSH-MCT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4la (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 29,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "4"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4la (LOC) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4"
+                                }
+                              ],
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "94365b82-6204-4937-8b86-fe0433287938"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 29,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "5"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4la (LOC) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4"
+                                }
+                              ],
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "94365b82-6204-4937-8b86-fe0433287938"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4la (LOC)",
+                              "arealabel": "Area-hOc4la",
+                              "status": "publicP",
+                              "labelIndex": "118",
+                              "doi": "https://doi.org/10.25493/Z9JX-WKB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "frontal lobe",
+                  "children": [
+                    {
+                      "name": "inferior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 44 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 44 (IFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 92,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 44 (IFG) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369"
+                                }
+                              ],
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 44 (IFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 92,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 44 (IFG) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369"
+                                }
+                              ],
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 44 (IFG)",
+                              "arealabel": "Area-44",
+                              "status": "publicP",
+                              "labelIndex": "2",
+                              "doi": "https://doi.org/10.25493/F9P8-ZVW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 45 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 45 (IFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 112,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 45 (IFG) [v9.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47"
+                                }
+                              ],
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cb32e688-43f0-4ae3-9554-085973137663"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 45 (IFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 112,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 45 (IFG) [v9.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47"
+                                }
+                              ],
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cb32e688-43f0-4ae3-9554-085973137663"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 45 (IFG)",
+                              "arealabel": "Area-45",
+                              "status": "publicP",
+                              "labelIndex": "1",
+                              "doi": "https://doi.org/10.25493/MR1V-BJ3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dorsal precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6d2 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 82,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d2 (PreCG) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 82,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d2 (PreCG) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d2 (PreCG)",
+                              "arealabel": "Area-6d2",
+                              "status": "publicDOI",
+                              "labelIndex": "288",
+                              "doi": "https://doi.org/10.25493/KXHS-N90",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 6d1 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 90,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "36"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d1 (PreCG) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298"
+                                }
+                              ],
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 90,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "35"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d1 (PreCG) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298"
+                                }
+                              ],
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d1 (PreCG)",
+                              "arealabel": "Area-6d1",
+                              "status": "publicDOI",
+                              "labelIndex": "287",
+                              "doi": "https://doi.org/10.25493/4WSQ-8FM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "posterior medial superior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 70,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6ma (preSMA, mesial SFG) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "89347668-eee6-4be5-b783-8dddf422bba0"
+                                }
+                              ],
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 70,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6ma (preSMA, mesial SFG) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "89347668-eee6-4be5-b783-8dddf422bba0"
+                                }
+                              ],
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "arealabel": "Area-6ma",
+                              "status": "publicP",
+                              "labelIndex": "299",
+                              "doi": "https://doi.org/10.25493/WVNR-SPT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "children": [
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 68,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d3 (SFS) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b"
+                                }
+                              ],
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "266c1ada-1840-462f-8223-7ff2df457552"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 68,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d3 (SFS) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b"
+                                }
+                              ],
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "266c1ada-1840-462f-8223-7ff2df457552"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d3 (SFS)",
+                              "arealabel": "Area-6d3",
+                              "status": "publicDOI",
+                              "labelIndex": "289",
+                              "doi": "https://doi.org/10.25493/NVJ5-JJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal pole",
+                      "children": [
+                        {
+                          "name": "Area Fp1 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "status": "left hemisphere",
+                              "labelIndex": 107,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp1 (FPole) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "status": "right hemisphere",
+                              "labelIndex": 107,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp1 (FPole) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp1 (FPole)",
+                              "arealabel": "Area-Fp1",
+                              "status": "publicP",
+                              "labelIndex": "212",
+                              "doi": "https://doi.org/10.25493/PTKW-R7W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fp2 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "status": "left hemisphere",
+                              "labelIndex": 101,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp2 (FPole) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "status": "right hemisphere",
+                              "labelIndex": 101,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp2 (FPole) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp2 (FPole)",
+                              "arealabel": "Area-Fp2",
+                              "status": "publicP",
+                              "labelIndex": "211",
+                              "doi": "https://doi.org/10.25493/GZW1-7R3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "precentral gyrus ",
+                      "children": [
+                        {
+                          "name": "Area 4p (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 9,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4p (PreCG) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b"
+                                }
+                              ],
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 9,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4p (PreCG) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b"
+                                }
+                              ],
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4p (PreCG)",
+                              "arealabel": "Area-4p",
+                              "status": "publicP",
+                              "labelIndex": "123",
+                              "doi": "https://doi.org/10.25493/5HSF-81J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 4a (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 100,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "95"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4a (PreCG) [v11.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f"
+                                }
+                              ],
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 100,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "96"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4a (PreCG) [v11.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f"
+                                }
+                              ],
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4a (PreCG)",
+                              "arealabel": "Area-4a",
+                              "status": "publicP",
+                              "labelIndex": "124",
+                              "doi": "https://doi.org/10.25493/PVPP-P3Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "mesial precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 108,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "21"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6mp (SMA, mesial SFG) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9"
+                                }
+                              ],
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 108,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "20"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6mp (SMA, mesial SFG) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9"
+                                }
+                              ],
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "arealabel": "Area-6mp",
+                              "status": "publicP",
+                              "labelIndex": "298",
+                              "doi": "https://doi.org/10.25493/2E1T-47F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "medial orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo1 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 47,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo1 (OFC) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b"
+                                }
+                              ],
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 47,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo1 (OFC) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b"
+                                }
+                              ],
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo1 (OFC)",
+                              "arealabel": "Area-Fo1",
+                              "status": "publicP",
+                              "labelIndex": "3",
+                              "doi": "https://doi.org/10.25493/H2N2-6J2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo3 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 48,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo3 (OFC) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0"
+                                }
+                              ],
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 48,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo3 (OFC) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0"
+                                }
+                              ],
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo3 (OFC)",
+                              "arealabel": "Area-Fo3",
+                              "status": "publicP",
+                              "labelIndex": "5",
+                              "doi": "https://doi.org/10.25493/E1YQ-65U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo2 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 67,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo2 (OFC) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 67,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo2 (OFC) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo2 (OFC)",
+                              "arealabel": "Area-Fo2",
+                              "status": "publicP",
+                              "labelIndex": "4",
+                              "doi": "https://doi.org/10.25493/3JB9-2V2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal operculum ",
+                      "children": [
+                        {
+                          "name": "Area OP6 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 31,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP6 (Frontal Operculum) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                63,
+                                100
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af208413-1233-4512-9395-8ac2c4533875"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 31,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP6 (Frontal Operculum) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                63,
+                                100
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af208413-1233-4512-9395-8ac2c4533875"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "arealabel": "Area-OP6",
+                              "status": "publicDOI",
+                              "labelIndex": "349",
+                              "doi": "https://doi.org/10.25493/41KE-8HT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP8 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 40,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP8 (Frontal Operculum) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "43d46017-2bef-467b-b870-9866c838e4f3"
+                                }
+                              ],
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "fullId": {}
+                            },
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 40,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP8 (Frontal Operculum) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "43d46017-2bef-467b-b870-9866c838e4f3"
+                                }
+                              ],
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "fullId": {}
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "arealabel": "Area-OP8",
+                              "status": "publicDOI",
+                              "labelIndex": "273",
+                              "doi": "https://doi.org/10.25493/NGF8-TA4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP5 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 43,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "90"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP5 (Frontal Operculum) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                78,
+                                253
+                              ],
+                              "fullId": {}
+                            },
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 43,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "91"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP5 (Frontal Operculum) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                78,
+                                253
+                              ],
+                              "fullId": {}
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "arealabel": "Area-OP5",
+                              "status": "publicDOI",
+                              "labelIndex": "348",
+                              "doi": "https://doi.org/10.25493/TWFH-BJZ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP9 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 117,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP9 (Frontal Operculum) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed"
+                                }
+                              ],
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "fullId": {}
+                            },
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 117,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP9 (Frontal Operculum) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed"
+                                }
+                              ],
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "fullId": {}
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "arealabel": "Area-OP9",
+                              "status": "publicDOI",
+                              "labelIndex": "274",
+                              "doi": "https://doi.org/10.25493/3A30-5E4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP7 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 60,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP7 (Frontal Operculum) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d"
+                                }
+                              ],
+                              "rgb": [
+                                134,
+                                116,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 60,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP7 (Frontal Operculum) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d"
+                                }
+                              ],
+                              "rgb": [
+                                134,
+                                116,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "arealabel": "Area-OP7",
+                              "status": "publicDOI",
+                              "labelIndex": "350",
+                              "doi": "https://doi.org/10.25493/T2M3-2ST",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo6 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 36,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo6 (OFC) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400"
+                                }
+                              ],
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "330ae178-557c-4bd0-a932-f138c0a05345"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 36,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo6 (OFC) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400"
+                                }
+                              ],
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "330ae178-557c-4bd0-a932-f138c0a05345"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo6 (OFC)",
+                              "arealabel": "Area-Fo6",
+                              "status": "publicDOI",
+                              "labelIndex": "326",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo5 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 76,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "42"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo5 (OFC) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870"
+                                }
+                              ],
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 76,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "42"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo5 (OFC) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870"
+                                }
+                              ],
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo5 (OFC)",
+                              "arealabel": "Area-Fo5",
+                              "status": "publicDOI",
+                              "labelIndex": "325",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo7 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 52,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo7 (OFC) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea"
+                                }
+                              ],
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 52,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo7 (OFC) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea"
+                                }
+                              ],
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo7 (OFC)",
+                              "arealabel": "Area-Fo7",
+                              "status": "publicDOI",
+                              "labelIndex": "327",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo4 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 80,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo4 (OFC) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4"
+                                }
+                              ],
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2cdee956-207a-4d4d-b051-bef80045210b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 80,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo4 (OFC) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4"
+                                }
+                              ],
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2cdee956-207a-4d4d-b051-bef80045210b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo4 (OFC)",
+                              "arealabel": "Area-Fo4",
+                              "status": "publicDOI",
+                              "labelIndex": "324",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "insula",
+                  "children": [
+                    {
+                      "name": "granular insula",
+                      "children": [
+                        {
+                          "name": "Area Ig3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 105,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig3 (Insula) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                253,
+                                197
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 105,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig3 (Insula) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                253,
+                                197
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig3 (Insula)",
+                              "arealabel": "Area-Ig3",
+                              "status": "publicDOI",
+                              "labelIndex": "336",
+                              "doi": "https://doi.org/10.25493/2FTZ-MWQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 25,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig1 (Insula) [v14.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3"
+                                }
+                              ],
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 25,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig1 (Insula) [v14.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3"
+                                }
+                              ],
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig1 (Insula)",
+                              "arealabel": "Area-Ig1",
+                              "status": "publicP",
+                              "labelIndex": "115",
+                              "doi": "https://doi.org/10.25493/EKV9-29D",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 45,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig2 (Insula) [v14.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 45,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig2 (Insula) [v14.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig2 (Insula)",
+                              "arealabel": "Area-Ig2",
+                              "status": "publicP",
+                              "labelIndex": "114",
+                              "doi": "https://doi.org/10.25493/662G-E0W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Ia (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ia (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 118,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "80"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ia (Insula) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ia (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 118,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "80"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ia (Insula) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ia (Insula)",
+                              "arealabel": "Area-Ia",
+                              "status": "publicDOI",
+                              "labelIndex": "339",
+                              "doi": "https://doi.org/10.25493/WW8G-T2G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dys-agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id7 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 18,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "107"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id7 (Insula) [v7.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868"
+                                }
+                              ],
+                              "rgb": [
+                                188,
+                                250,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 18,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "106"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id7 (Insula) [v7.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868"
+                                }
+                              ],
+                              "rgb": [
+                                188,
+                                250,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id7 (Insula)",
+                              "arealabel": "Area-Id7",
+                              "status": "publicDOI",
+                              "labelIndex": "159",
+                              "doi": "https://doi.org/10.25493/88QG-JMS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dysgranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 99,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id2 (Insula) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "a260b3b4eadda85af9fd8df4100c10a9"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                126,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf9dea67-649d-4034-ae57-ec389f339277"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 99,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id2 (Insula) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "a260b3b4eadda85af9fd8df4100c10a9"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                126,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf9dea67-649d-4034-ae57-ec389f339277"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id2 (Insula)",
+                              "arealabel": "Area-Id2",
+                              "status": "publicDOI",
+                              "labelIndex": "56",
+                              "doi": "https://doi.org10.25493/377R-T96",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 78,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id1 (Insula) [v14.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086"
+                                }
+                              ],
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c22055c1-514f-4096-906b-abf57286053b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 78,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id1 (Insula) [v14.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086"
+                                }
+                              ],
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c22055c1-514f-4096-906b-abf57286053b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id1 (Insula)",
+                              "arealabel": "Area-Id1",
+                              "status": "publicP",
+                              "labelIndex": "116",
+                              "doi": "https://doi.org/10.25493/F37H-8WB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id5 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 104,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id5 (Insula) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9"
+                                }
+                              ],
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 104,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id5 (Insula) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9"
+                                }
+                              ],
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id5 (Insula)",
+                              "arealabel": "Area-Id5",
+                              "status": "publicDOI",
+                              "labelIndex": "338",
+                              "doi": "https://doi.org/10.25493/5CK1-B1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id6 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 11,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id6 (Insula) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 11,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id6 (Insula) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id6 (Insula)",
+                              "arealabel": "Area-Id6",
+                              "status": "publicDOI",
+                              "labelIndex": "340",
+                              "doi": "https://doi.org/10.25493/54HZ-KFQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id4 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 53,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id4 (Insula) [v4.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 53,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id4 (Insula) [v4.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id4 (Insula)",
+                              "arealabel": "Area-Id4",
+                              "status": "publicDOI",
+                              "labelIndex": "337",
+                              "doi": "https://doi.org/10.25493/K63G-89H",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 54,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "20"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id3 (Insula) [v8.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317"
+                                }
+                              ],
+                              "rgb": [
+                                32,
+                                32,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 54,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "21"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id3 (Insula) [v8.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317"
+                                }
+                              ],
+                              "rgb": [
+                                32,
+                                32,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id3 (Insula)",
+                              "arealabel": "Area-Id3",
+                              "status": "publicDOI",
+                              "labelIndex": "57",
+                              "doi": "https://doi.org/10.25493/AE2S-KT6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "temporal lobe",
+                  "children": [
+                    {
+                      "name": "superior temporal sulcus",
+                      "children": [
+                        {
+                          "name": "Area STS2 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS2 (STS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 98,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS2 (STS) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0"
+                                }
+                              ],
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "278fc30f-2e24-4046-856b-95dfaf561635"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS2 (STS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 98,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS2 (STS) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0"
+                                }
+                              ],
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "278fc30f-2e24-4046-856b-95dfaf561635"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS2 (STS)",
+                              "arealabel": "Area-STS2",
+                              "status": "publicDOI",
+                              "labelIndex": "272",
+                              "doi": "https://doi.org/10.25493/KHY9-J3Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area STS1 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS1 (STS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 114,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "96"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS1 (STS) [v5.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f"
+                                }
+                              ],
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS1 (STS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 114,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "95"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS1 (STS) [v5.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f"
+                                }
+                              ],
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS1 (STS)",
+                              "arealabel": "Area-STS1",
+                              "status": "publicDOI",
+                              "labelIndex": "271",
+                              "doi": "https://doi.org/10.25493/F6DF-H8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 15,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 3 (STG) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13"
+                                }
+                              ],
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 15,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 3 (STG) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13"
+                                }
+                              ],
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 3 (STG)",
+                              "arealabel": "Area-TE-3",
+                              "status": "publicP",
+                              "labelIndex": "31",
+                              "doi": "https://doi.org/10.25493/BN5J-JT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.2 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 93,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "119"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.2 (STG) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                104,
+                                125
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 93,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "119"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.2 (STG) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                104,
+                                125
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.2 (STG)",
+                              "arealabel": "Area-TE-2.2",
+                              "status": "publicDOI",
+                              "labelIndex": "34",
+                              "doi": " https://doi.org/10.25493/RTTN-R5F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.1 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 19,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "82"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.1 (STG) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                254,
+                                44
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 19,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "81"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.1 (STG) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                254,
+                                44
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.1 (STG)",
+                              "arealabel": "Area-TE-2.1",
+                              "status": "publicDOI",
+                              "labelIndex": "28",
+                              "doi": "https://doi.org/10.25493/R28N-2TD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "temporal-insula",
+                      "children": [
+                        {
+                          "name": "Area TI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TI (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 13,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TI (STG) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd"
+                                }
+                              ],
+                              "rgb": [
+                                86,
+                                101,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TI (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 13,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TI (STG) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd"
+                                }
+                              ],
+                              "rgb": [
+                                86,
+                                101,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TI (STG)",
+                              "arealabel": "Area-TI",
+                              "status": "publicDOI",
+                              "labelIndex": "243",
+                              "doi": "https://doi.org/10.25493/57FA-VX6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TeI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TeI (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 79,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TeI (STG) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                78,
+                                92
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TeI (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 79,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TeI (STG) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                78,
+                                92
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TeI (STG)",
+                              "arealabel": "Area-TeI",
+                              "status": " publicDOI",
+                              "labelIndex": "242",
+                              "doi": "https://doi.org/10.25493/DTC3-EVM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "Heschl's gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 86,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.2 (HESCHL) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2"
+                                }
+                              ],
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 86,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.2 (HESCHL) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2"
+                                }
+                              ],
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "arealabel": "Area-TE-1.2",
+                              "status": "publicP",
+                              "labelIndex": "30",
+                              "doi": "https://doi.org/10.25493/R382-617",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 39,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.1 (HESCHL) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c"
+                                }
+                              ],
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e2969911-77eb-4b21-af70-216cab5285b1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 39,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.1 (HESCHL) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c"
+                                }
+                              ],
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e2969911-77eb-4b21-af70-216cab5285b1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "arealabel": "Area-TE-1.1",
+                              "status": "publicP",
+                              "labelIndex": "33",
+                              "doi": "https://doi.org/10.25493/4HA3-BBE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 34,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.0 (HESCHL) [v6.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "13e21153-2ba8-4212-b172-8894f1012225"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 34,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.0 (HESCHL) [v6.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "13e21153-2ba8-4212-b172-8894f1012225"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "arealabel": "Area-TE-1.0",
+                              "status": "publicP",
+                              "labelIndex": "27",
+                              "doi": "https://doi.org/10.25493/MV3G-RET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fusiform gyrus",
+                      "children": [
+                        {
+                          "name": "Area FG2 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 28,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG2 (FusG) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 28,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG2 (FusG) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG2 (FusG)",
+                              "arealabel": "Area-FG2",
+                              "status": "publicP",
+                              "labelIndex": "106",
+                              "doi": "https://doi.org/10.25493/F2JH-KVV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG3 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 42,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG3 (FusG) [v7.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "34f29154-e210-4bef-9510-73b77f727132"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 42,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG3 (FusG) [v7.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "34f29154-e210-4bef-9510-73b77f727132"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG3 (FusG)",
+                              "arealabel": "Area-FG3",
+                              "status": "publicP",
+                              "labelIndex": "239",
+                              "doi": "https://doi.org/10.25493/Z0F6-0SY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG1 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 84,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG1 (FusG) [v3.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a00577ca-5089-443d-918e-b99531efd5e9"
+                                }
+                              ],
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 84,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG1 (FusG) [v3.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a00577ca-5089-443d-918e-b99531efd5e9"
+                                }
+                              ],
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG1 (FusG)",
+                              "arealabel": "Area-FG1",
+                              "status": "publicP",
+                              "labelIndex": "107",
+                              "doi": "https://doi.org/10.25493/5ZVQ-R8R",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG4 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 55,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG4 (FusG) [v7.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 55,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG4 (FusG) [v7.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG4 (FusG)",
+                              "arealabel": "Area-FG4",
+                              "status": "publicP",
+                              "labelIndex": "238",
+                              "doi": "https://doi.org/10.25493/13RG-FYV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "overall",
+                  "children": [
+                    {
+                      "name": "overall",
+                      "children": [
+                        {
+                          "name": "Frontal-to-Occipital (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 33,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Occipital (GapMap) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3ae17b7-f994-4161-ba60-46a971610167"
+                                }
+                              ],
+                              "rgb": [
+                                104,
+                                161,
+                                93
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 33,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Occipital (GapMap) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3ae17b7-f994-4161-ba60-46a971610167"
+                                }
+                              ],
+                              "rgb": [
+                                104,
+                                161,
+                                93
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "arealabel": "Frontal-to-Occipital",
+                              "status": "publicP",
+                              "labelIndex": "504",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Temporal-to-Parietal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 2,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Temporal-to-Parietal (GapMap) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18"
+                                }
+                              ],
+                              "rgb": [
+                                76,
+                                90,
+                                161
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 2,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Temporal-to-Parietal (GapMap) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18"
+                                }
+                              ],
+                              "rgb": [
+                                76,
+                                90,
+                                161
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "arealabel": "Temporal-to-Parietal",
+                              "status": "publicP",
+                              "labelIndex": "503",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-I (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 71,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-I (GapMap) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7"
+                                }
+                              ],
+                              "rgb": [
+                                186,
+                                255,
+                                25
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 71,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-I (GapMap) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7"
+                                }
+                              ],
+                              "rgb": [
+                                186,
+                                255,
+                                25
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-I (GapMap)",
+                              "arealabel": "Frontal-I",
+                              "status": "publicP",
+                              "labelIndex": "500",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-to-Temporal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 110,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Temporal (GapMap) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45"
+                                }
+                              ],
+                              "rgb": [
+                                161,
+                                24,
+                                74
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 110,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Temporal (GapMap) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45"
+                                }
+                              ],
+                              "rgb": [
+                                161,
+                                24,
+                                74
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "arealabel": "Frontal-to-Temporal",
+                              "status": "publicP",
+                              "labelIndex": "502",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-II (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 27,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-II (GapMap) [v10.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                135,
+                                15
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 27,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-II (GapMap) [v10.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                135,
+                                15
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-II (GapMap)",
+                              "arealabel": "Frontal-II",
+                              "status": "publicP",
+                              "labelIndex": "501",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "limbic lobe",
+                  "children": [
+                    {
+                      "name": "cingulate gyrus, frontal part",
+                      "children": [
+                        {
+                          "name": "Area p24c (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24c (pACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 57,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24c (pACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721"
+                                }
+                              ],
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24c (pACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 57,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24c (pACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721"
+                                }
+                              ],
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24c (pACC)",
+                              "arealabel": "Area-p24c",
+                              "status": "publicP",
+                              "labelIndex": "232",
+                              "doi": "https://doi.org/10.25493/QA7B-JM9",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 25 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area 25 (sACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 3,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 25 (sACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 25 (sACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 3,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 25 (sACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 25 (sACC)",
+                              "arealabel": "Area-25",
+                              "status": "publicP",
+                              "labelIndex": "184",
+                              "doi": "https://doi.org/10.25493/51AM-WN4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p24ab (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 63,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24ab (pACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 63,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24ab (pACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24ab (pACC)",
+                              "arealabel": "Area-p24ab",
+                              "status": "publicP",
+                              "labelIndex": "231",
+                              "doi": "https://doi.org/10.25493/DHXC-2KN",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s32 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s32 (sACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 74,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "102"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s32 (sACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca"
+                                }
+                              ],
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s32 (sACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 74,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "103"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s32 (sACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca"
+                                }
+                              ],
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s32 (sACC)",
+                              "arealabel": "Area-s32",
+                              "status": "publicP",
+                              "labelIndex": "46",
+                              "doi": "https://doi.org/10.25493/XTRR-172",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 33 (ACC)",
+                          "children": [
+                            {
+                              "name": "Area 33 (ACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 96,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 33 (ACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c"
+                                }
+                              ],
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 33 (ACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 96,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 33 (ACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c"
+                                }
+                              ],
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 33 (ACC)",
+                              "arealabel": "Area-33",
+                              "status": "publicP",
+                              "labelIndex": "39",
+                              "doi": "https://doi.org/10.25493/X9QP-C6F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p32 (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p32 (pACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 113,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p32 (pACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a326443-3ced-482f-8772-fb948b0f298f"
+                                }
+                              ],
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p32 (pACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 113,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p32 (pACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a326443-3ced-482f-8772-fb948b0f298f"
+                                }
+                              ],
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p32 (pACC)",
+                              "arealabel": "Area-p32",
+                              "status": "publicP",
+                              "labelIndex": "47",
+                              "doi": "https://doi.org/10.25493/3JX0-7E5",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s24 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s24 (sACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 73,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s24 (sACC) [v18.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3"
+                                }
+                              ],
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s24 (sACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 73,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s24 (sACC) [v18.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3"
+                                }
+                              ],
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s24 (sACC)",
+                              "arealabel": "Area-s24",
+                              "status": "publicP",
+                              "labelIndex": "183",
+                              "doi": "https://doi.org/10.25493/HXWM-NRX",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "children": [
+                        {
+                          "name": "HC-Presubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 87,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Presubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "1c9fad3c-d235-4074-b505-74cd1c6fa3db"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "81b982fa-ad21-4791-a075-d671c0aff5dc"
+                              }
+                            },
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 87,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Presubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "1c9fad3c-d235-4074-b505-74cd1c6fa3db"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "81b982fa-ad21-4791-a075-d671c0aff5dc"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "arealabel": "HC-Presubiculum",
+                              "status": "publicP",
+                              "labelIndex": "63",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HATA (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 56,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HATA (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575"
+                                }
+                              ],
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 56,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HATA (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575"
+                                }
+                              ],
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HATA (Hippocampus)",
+                              "arealabel": "HATA",
+                              "status": "publicP",
+                              "labelIndex": "68",
+                              "doi": "https://doi.org/10.25493/M1XP-VSQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Entorhinal Cortex",
+                          "children": [
+                            {
+                              "name": "Entorhinal Cortex",
+                              "status": "left hemisphere",
+                              "labelIndex": 64,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Entorhinal Cortex [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7"
+                                }
+                              ],
+                              "rgb": [
+                                234,
+                                239,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Entorhinal Cortex",
+                              "status": "right hemisphere",
+                              "labelIndex": 64,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Entorhinal Cortex [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7"
+                                }
+                              ],
+                              "rgb": [
+                                234,
+                                239,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Entorhinal Cortex",
+                              "arealabel": "Entorhinal-Cortex",
+                              "status": "publicP",
+                              "labelIndex": "60",
+                              "doi": "https://doi.org/10.25493/KNXY-B1Z",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA3 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 119,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "91"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA3 (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07"
+                                }
+                              ],
+                              "rgb": [
+                                39,
+                                0,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "73d8e689-9485-4796-b2b2-47181fc45323"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 119,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "90"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA3 (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07"
+                                }
+                              ],
+                              "rgb": [
+                                39,
+                                0,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "73d8e689-9485-4796-b2b2-47181fc45323"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA3 (Hippocampus)",
+                              "arealabel": "CA3",
+                              "status": "publicP",
+                              "labelIndex": "59",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Transsubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 66,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Transsubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "b5aed403-291b-4dfd-8a67-b4419b644fdc"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "12bd1841-e54c-4afa-82d0-8c2f650bf653"
+                              }
+                            },
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 66,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Transsubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "b5aed403-291b-4dfd-8a67-b4419b644fdc"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "12bd1841-e54c-4afa-82d0-8c2f650bf653"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "arealabel": "HC-Transsubiculum",
+                              "status": "publicP",
+                              "labelIndex": "305",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Subiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 10,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Subiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "018b51f0-c2e1-410b-b82b-9c14ac7d47b4"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "a5ac430c-2622-4f62-84ce-ff3fbda9c50d"
+                              }
+                            },
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 10,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Subiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "018b51f0-c2e1-410b-b82b-9c14ac7d47b4"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "a5ac430c-2622-4f62-84ce-ff3fbda9c50d"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "arealabel": "HC-Subiculum",
+                              "status": "publicP",
+                              "labelIndex": "67",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Prosubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 6,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Prosubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "784eb7bd-1368-4248-8f47-ca667694c463"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "221592ff-41c4-4c2f-b37c-468b7a22dc1b"
+                              }
+                            },
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 6,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Prosubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "784eb7bd-1368-4248-8f47-ca667694c463"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "221592ff-41c4-4c2f-b37c-468b7a22dc1b"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "arealabel": "HC-Prosubiculum",
+                              "status": "publicP",
+                              "labelIndex": "64",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Parasubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 8,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Parasubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "4938b81c-e040-4ceb-a751-41b7384058c7"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "ac7bc35a-a0a5-4692-afe6-dbf25a087055"
+                              }
+                            },
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 8,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Parasubiculum (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "4938b81c-e040-4ceb-a751-41b7384058c7"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "ac7bc35a-a0a5-4692-afe6-dbf25a087055"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "arealabel": "HC-Parasubiculum",
+                              "status": "publicP",
+                              "labelIndex": "62",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "DG (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "DG (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 91,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "DG (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                149,
+                                8
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d"
+                                }
+                              }
+                            },
+                            {
+                              "name": "DG (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 91,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "DG (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                149,
+                                8
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "DG (Hippocampus)",
+                              "arealabel": "DG",
+                              "status": "publicP",
+                              "labelIndex": "61",
+                              "doi": "https://doi.org/10.25493/M8JP-XQT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA2 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 23,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA2 (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "159b16ee-2451-44d6-81cf-871d04755da4"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                250,
+                                98
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 23,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA2 (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "159b16ee-2451-44d6-81cf-871d04755da4"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                250,
+                                98
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA2 (Hippocampus)",
+                              "arealabel": "CA2",
+                              "status": "publicP",
+                              "labelIndex": "58",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA1 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 61,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "57"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA1 (Hippocampus) [v13.0, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                89,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 61,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "56"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA1 (Hippocampus) [v13.0, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                89,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA1 (Hippocampus)",
+                              "arealabel": "CA1",
+                              "status": "publicP",
+                              "labelIndex": "66",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        },
+        {
+          "name": "metencephalon",
+          "children": [
+            {
+              "name": "cerebellum",
+              "children": [
+                {
+                  "name": "cerebellar nuclei",
+                  "children": [
+                    {
+                      "name": "globose nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dentate nucleus",
+                      "children": [
+                        {
+                          "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 111,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "58095aef-da69-43d4-887c-009c095cecce"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 111,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "58095aef-da69-43d4-887c-009c095cecce"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Dorsal-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "240",
+                              "doi": "https://doi.org/10.25493/M5QG-SHH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Ventral Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 38,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 38,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Ventral-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "241",
+                              "doi": "https://doi.org/10.25493/FQE5-5QR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fastigial nucleus",
+                      "children": [
+                        {
+                          "name": "Fastigial Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 89,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "103"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 89,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "102"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Fastigial Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "arealabel": "Fastigial-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "219",
+                              "doi": "https://doi.org/10.25493/3YJ9-S6G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "emboliform nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, ICBM 2009c Asymmetric, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        }
+      ],
+      "_": {
+        "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201204_JulichBrainV3_0_hemisphereSplit_metadata/src/eebf8ef90078fb722456eb5e77eb000ae09db776/output/nehubaUI/julich-brain-v3.0-icbm152.json"
+      }
+    },
+    {
+      "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+      "name": "Cytoarchitectonic Maps - v2.5",
+      "auxillaryMeshIndices": [
+        65535
+      ],
+      "hasAdditionalViewMode": [],
+      "originDatasets": [
+        {
+          "kgSchema": "minds/core/dataset/v1.0.0",
+          "kgId": "5249afa7-5e04-4ffd-8039-c3a9231f717c"
+        }
+      ],
+      "properties": {
+        "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI ICBM 2009c Asymmetric as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.",
+        "publications": [
+          {
+            "doi": "https://doi.org/10.1038/nrn2776",
+            "citation": "Zilles K, Amunts K (2010) Centenary of Brodmann’s map – conception and fate. Nature Reviews Neuroscience 11(2): 139-145 "
+          },
+          {
+            "doi": "https://doi.org/10.1016/j.neuroimage.2007.02.037",
+            "citation": "Amunts K, Schleicher A, Zilles K (2007) Cytoarchitecture of the cerebral cortex – more than localization. Neuroimage 37: 1061-1065"
+          },
+          {
+            "doi": "http://dx.doi.org/10.1016/B978-012693019-1/50023-X",
+            "citation": "Zilles K, Schleicher A, Palomero-Gallagher N, Amunts K (2002) Quantitative analysis of cyto- and receptor architecture of the human brain. In: /Brain Mapping: The Methods/, J. C. Mazziotta and A. Toga (eds.), USA: Elsevier, 2002, p. 573-602."
+          }
+        ]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "children": [
+            {
+              "name": "cerebral nuclei",
+              "children": [
+                {
+                  "name": "basal forebrain",
+                  "children": [
+                    {
+                      "name": "magnocellular group within septum",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "magnocellular group within septum",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "sublenticular part of basal forebrain",
+                      "children": [
+                        {
+                          "name": "Ch 4 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "labelIndex": 13,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "labelIndex": 13,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "arealabel": "Ch-4",
+                              "status": "publicP",
+                              "labelIndex": "264",
+                              "doi": "https://doi.org/10.25493/VZJ5-8WJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "sublenticular part of basal forebrain",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "magnocellular group within horizontal limb of diagnoal band",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "magnocellular group within horizontal limb of diagnoal band",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "basal forebrain",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "amygdala",
+                  "children": [
+                    {
+                      "name": "laterobasal group",
+                      "children": [
+                        {
+                          "name": "LB (Amygdala)",
+                          "children": [
+                            {
+                              "name": "LB (Amygdala)",
+                              "labelIndex": 94,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              }
+                            },
+                            {
+                              "name": "LB (Amygdala)",
+                              "labelIndex": 94,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "LB (Amygdala)",
+                              "arealabel": "LB",
+                              "status": "publicP",
+                              "labelIndex": "187",
+                              "doi": "https://doi.org/10.25493/C3X0-NV3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "laterobasal group",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "superficial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "SF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "SF (Amygdala)",
+                              "labelIndex": 111,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "111"
+                                }
+                              }
+                            },
+                            {
+                              "name": "SF (Amygdala)",
+                              "labelIndex": 110,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "SF (Amygdala)",
+                              "arealabel": "SF",
+                              "status": "publicP",
+                              "labelIndex": "185",
+                              "doi": "https://doi.org/10.25493/WD31-SEA",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superficial group",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "fiber masses",
+                      "children": [
+                        {
+                          "name": "VTM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "VTM (Amygdala)",
+                              "labelIndex": 83,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              }
+                            },
+                            {
+                              "name": "VTM (Amygdala)",
+                              "labelIndex": 83,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "VTM (Amygdala)",
+                              "arealabel": "VTM",
+                              "status": "publicP",
+                              "labelIndex": "228",
+                              "doi": "https://doi.org/10.25493/99HN-XRE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "IF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "IF (Amygdala)",
+                              "labelIndex": 61,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              }
+                            },
+                            {
+                              "name": "IF (Amygdala)",
+                              "labelIndex": 61,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "IF (Amygdala)",
+                              "arealabel": "IF",
+                              "status": "publicP",
+                              "labelIndex": "237",
+                              "doi": "https://doi.org/10.25493/GWPR-G6K",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "MF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "MF (Amygdala)",
+                              "labelIndex": 104,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              }
+                            },
+                            {
+                              "name": "MF (Amygdala)",
+                              "labelIndex": 104,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "MF (Amygdala)",
+                              "arealabel": "MF",
+                              "status": "publicP",
+                              "labelIndex": "235",
+                              "doi": "https://doi.org/10.25493/9375-55V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "fiber masses",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "centromedial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "centromedial group",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "amygdala",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                }
+              ],
+              "_": {
+                "julichbrain-ontology_25.json": {
+                  "name": "cerebral nuclei",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null
+                }
+              }
+            },
+            {
+              "name": "cerebral cortex",
+              "children": [
+                {
+                  "name": "parietal lobe",
+                  "children": [
+                    {
+                      "name": "superior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area 5L (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5L (SPL)",
+                              "labelIndex": 97,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "97"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5L (SPL)",
+                              "labelIndex": 97,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "97"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5L (SPL)",
+                              "arealabel": "Area-5L",
+                              "status": "publicP",
+                              "labelIndex": "130",
+                              "doi": "https://doi.org/10.25493/C1FQ-2F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7M (SPL)",
+                              "labelIndex": 89,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7M (SPL)",
+                              "labelIndex": 88,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "88"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7M (SPL)",
+                              "arealabel": "Area-7M",
+                              "status": "publicP",
+                              "labelIndex": "135",
+                              "doi": "https://doi.org/10.25493/F25F-EKW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7PC (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "labelIndex": 121,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "labelIndex": 121,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7PC (SPL)",
+                              "arealabel": "Area-7PC",
+                              "status": "publicP",
+                              "labelIndex": "132",
+                              "doi": "https://doi.org/10.25493/Z45N-1T",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5M (SPL)",
+                              "labelIndex": 98,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "98"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5M (SPL)",
+                              "labelIndex": 98,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "98"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5M (SPL)",
+                              "arealabel": "Area-5M",
+                              "status": "publicP",
+                              "labelIndex": "131",
+                              "doi": "https://doi.org/10.25493/Y12F-YMU",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7P (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7P (SPL)",
+                              "labelIndex": 35,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "35"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7P (SPL)",
+                              "labelIndex": 35,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "35"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7P (SPL)",
+                              "arealabel": "Area-7P",
+                              "status": "publicP",
+                              "labelIndex": "208",
+                              "doi": "https://doi.org/10.25493/C3HS-8R7",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5Ci (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "labelIndex": 73,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "labelIndex": 73,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5Ci (SPL)",
+                              "arealabel": "Area-5Ci",
+                              "status": "publicP",
+                              "labelIndex": "136",
+                              "doi": "https://doi.org/10.25493/SQVP-GK1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7A (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7A (SPL)",
+                              "labelIndex": 85,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7A (SPL)",
+                              "labelIndex": 85,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7A (SPL)",
+                              "arealabel": "Area-7A",
+                              "status": "publicP",
+                              "labelIndex": "134",
+                              "doi": "https://doi.org/10.25493/7HX2-AJH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior parietal lobule",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "parietal operculum",
+                      "children": [
+                        {
+                          "name": "Area OP3 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "labelIndex": 84,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "labelIndex": 84,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP3 (POperc)",
+                              "arealabel": "Area-OP3",
+                              "status": "publicP",
+                              "labelIndex": "75",
+                              "doi": "https://doi.org/10.25493/1Z8F-PX4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP4 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "labelIndex": 11,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "labelIndex": 11,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP4 (POperc)",
+                              "arealabel": "Area-OP4",
+                              "status": "publicP",
+                              "labelIndex": "72",
+                              "doi": "https://doi.org/10.25493/BVT0-H3U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP2 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "labelIndex": 17,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "labelIndex": 16,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "16"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP2 (POperc)",
+                              "arealabel": "Area-OP2",
+                              "status": "publicP",
+                              "labelIndex": "74",
+                              "doi": "https://doi.org/10.25493/5KBV-36J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP1 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "labelIndex": 57,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "57"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "labelIndex": 56,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "56"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP1 (POperc)",
+                              "arealabel": "Area-OP1",
+                              "status": "publicP",
+                              "labelIndex": "73",
+                              "doi": "https://doi.org/10.25493/SH37-979",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "parietal operculum",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "postcentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 3b (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "labelIndex": 2,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "labelIndex": 2,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3b (PostCG)",
+                              "arealabel": "Area-3b",
+                              "status": "publicP",
+                              "labelIndex": "127",
+                              "doi": "https://doi.org/10.25493/2JK3-QXR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 1 (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "labelIndex": 12,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "labelIndex": 12,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 1 (PostCG)",
+                              "arealabel": "Area-1",
+                              "status": "publicP",
+                              "labelIndex": "125",
+                              "doi": "https://doi.org/10.25493/THB5-B64",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 2 (PostCS)",
+                          "children": [
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "labelIndex": 78,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "labelIndex": 78,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 2 (PostCS)",
+                              "arealabel": "Area-2",
+                              "status": "publicP",
+                              "labelIndex": "252",
+                              "doi": "https://doi.org/10.25493/QA8F-DD2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 3a (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "labelIndex": 105,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "labelIndex": 105,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3a (PostCG)",
+                              "arealabel": "Area-3a",
+                              "status": "publicP",
+                              "labelIndex": "126",
+                              "doi": "https://doi.org/10.25493/C5QQ-EFB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "postcentral gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "inferior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area PF (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PF (IPL)",
+                              "labelIndex": 5,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "5"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PF (IPL)",
+                              "labelIndex": 4,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "4"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PF (IPL)",
+                              "arealabel": "Area-PF",
+                              "status": "publicP",
+                              "labelIndex": "206",
+                              "doi": "https://doi.org/10.25493/F1TJ-54W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFcm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "labelIndex": 33,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "33"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "labelIndex": 32,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFcm (IPL)",
+                              "arealabel": "Area-PFcm",
+                              "status": "publicP",
+                              "labelIndex": "113",
+                              "doi": "https://doi.org/10.25493/8DP8-8HE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGa (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGa (IPL)",
+                              "labelIndex": 76,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGa (IPL)",
+                              "labelIndex": 76,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGa (IPL)",
+                              "arealabel": "Area-PGa",
+                              "status": "publicP",
+                              "labelIndex": "110",
+                              "doi": "https://doi.org/10.25493/V5HY-XTS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFt (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFt (IPL)",
+                              "labelIndex": 27,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFt (IPL)",
+                              "labelIndex": 28,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "28"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFt (IPL)",
+                              "arealabel": "Area-PFt",
+                              "status": "publicP",
+                              "labelIndex": "109",
+                              "doi": "https://doi.org/10.25493/JGM9-ZET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFm (IPL)",
+                              "labelIndex": 92,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFm (IPL)",
+                              "labelIndex": 91,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "91"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFm (IPL)",
+                              "arealabel": "Area-PFm",
+                              "status": "publicP",
+                              "labelIndex": "112",
+                              "doi": "https://doi.org/10.25493/TB94-HRK",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGp (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGp (IPL)",
+                              "labelIndex": 23,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGp (IPL)",
+                              "labelIndex": 23,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGp (IPL)",
+                              "arealabel": "Area-PGp",
+                              "status": "publicP",
+                              "labelIndex": "108",
+                              "doi": "https://doi.org/10.25493/FPFJ-ZCD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFop (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFop (IPL)",
+                              "labelIndex": 115,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "115"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFop (IPL)",
+                              "labelIndex": 114,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "114"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFop (IPL)",
+                              "arealabel": "Area-PFop",
+                              "status": "publicP",
+                              "labelIndex": "111",
+                              "doi": "https://doi.org/10.25493/M2PM-92Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "inferior parietal lobule",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "labelIndex": 15,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "labelIndex": 15,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hPO1 (POS)",
+                              "arealabel": "Area-hPO1",
+                              "status": "publicP",
+                              "labelIndex": "297",
+                              "doi": "https://doi.org/10.25493/W50A-FAP",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "parieto-occipital sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "intraparietal sulcus",
+                      "children": [
+                        {
+                          "name": "Area hIP1 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "labelIndex": 77,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "labelIndex": 77,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP1 (IPS)",
+                              "arealabel": "Area-hIP1",
+                              "status": "publicP",
+                              "labelIndex": "128",
+                              "doi": "https://doi.org/10.25493/92FE-7S6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "labelIndex": 119,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "119"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "labelIndex": 119,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "119"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP7 (IPS)",
+                              "arealabel": "Area-hIP7",
+                              "status": "publicP",
+                              "labelIndex": "296",
+                              "doi": "https://doi.org/10.25493/WRCY-8Z1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP3 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "labelIndex": 42,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "42"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "labelIndex": 42,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "42"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP3 (IPS)",
+                              "arealabel": "Area-hIP3",
+                              "status": "publicP",
+                              "labelIndex": "133",
+                              "doi": "https://doi.org/10.25493/P8X0-V1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP2 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "labelIndex": 68,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "labelIndex": 68,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP2 (IPS)",
+                              "arealabel": "Area-hIP2",
+                              "status": "publicP",
+                              "labelIndex": "129",
+                              "doi": "https://doi.org/10.25493/EJTM-NDY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "labelIndex": 38,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "labelIndex": 38,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP4 (IPS)",
+                              "arealabel": "Area-hIP4",
+                              "status": "publicP",
+                              "labelIndex": "294",
+                              "doi": "https://doi.org/10.25493/TSEN-QSY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "labelIndex": 34,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "labelIndex": 34,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP5 (IPS)",
+                              "arealabel": "Area-hIP5",
+                              "status": "publicP",
+                              "labelIndex": "295",
+                              "doi": "https://doi.org/10.25493/RNSM-Y4Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "labelIndex": 41,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "labelIndex": 41,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP6 (IPS)",
+                              "arealabel": "Area-hIP6",
+                              "status": "publicP",
+                              "labelIndex": "292",
+                              "doi": "https://doi.org/10.25493/AFQR-50Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP8 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "labelIndex": 59,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "59"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "labelIndex": 60,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP8 (IPS)",
+                              "arealabel": "Area-hIP8",
+                              "status": "publicP",
+                              "labelIndex": "293",
+                              "doi": "https://doi.org/10.25493/YYT8-FT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "intraparietal sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "parietal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "occiptal lobe",
+                  "children": [
+                    {
+                      "name": "dorsal occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc6 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "labelIndex": 48,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "48"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "labelIndex": 49,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc6 (POS)",
+                              "arealabel": "Area-hOc6",
+                              "status": "publicP",
+                              "labelIndex": "291",
+                              "doi": "https://doi.org/10.25493/4101-1ZG",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "labelIndex": 9,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "labelIndex": 9,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4d (Cuneus)",
+                              "arealabel": "Area-hOc4d",
+                              "status": "publicP",
+                              "labelIndex": "119",
+                              "doi": "https://doi.org/10.25493/VSK5-DET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc3d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "labelIndex": 82,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "82"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "labelIndex": 82,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "82"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3d (Cuneus)",
+                              "arealabel": "Area-hOc3d",
+                              "status": "publicP",
+                              "labelIndex": "120",
+                              "doi": "https://doi.org/10.25493/F9X3-JVJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dorsal occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "ventral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc3v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "labelIndex": 30,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "labelIndex": 30,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3v (LingG)",
+                              "arealabel": "Area-hOc3v",
+                              "status": "publicP",
+                              "labelIndex": "10",
+                              "doi": "https://doi.org/10.25493/E5E8-1VV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "labelIndex": 114,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "114"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "labelIndex": 115,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "115"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4v (LingG)",
+                              "arealabel": "Area-hOc4v",
+                              "status": "publicP",
+                              "labelIndex": "9",
+                              "doi": "https://doi.org/10.25493/AASR-M8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "ventral occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "children": [
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "labelIndex": 6,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "labelIndex": 6,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc2 (V2, 18)",
+                              "arealabel": "Area-hOc2",
+                              "status": "publicP",
+                              "labelIndex": "7",
+                              "doi": "https://doi.org/10.25493/QG9C-THD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "children": [
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "labelIndex": 117,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "labelIndex": 117,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "arealabel": "Area-hOc1",
+                              "status": "publicP",
+                              "labelIndex": "8",
+                              "doi": "https://doi.org/10.25493/MXJ6-6DH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "lateral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc4lp (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "labelIndex": 122,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "labelIndex": 122,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4lp (LOC)",
+                              "arealabel": "Area-hOc4lp",
+                              "status": "publicP",
+                              "labelIndex": "117",
+                              "doi": "https://doi.org/10.25493/4B87-Q8X",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc5 (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "labelIndex": 106,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "106"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "labelIndex": 107,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "107"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc5 (LOC)",
+                              "arealabel": "Area-hOc5",
+                              "status": "publicP",
+                              "labelIndex": "6",
+                              "doi": "https://doi.org/10.25493/2WSH-MCT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4la (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "labelIndex": 4,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "4"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "labelIndex": 5,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "5"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4la (LOC)",
+                              "arealabel": "Area-hOc4la",
+                              "status": "publicP",
+                              "labelIndex": "118",
+                              "doi": "https://doi.org/10.25493/Z9JX-WKB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "lateral occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "occiptal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "frontal lobe",
+                  "children": [
+                    {
+                      "name": "inferior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 44 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 44 (IFG)",
+                              "labelIndex": 69,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 44 (IFG)",
+                              "labelIndex": 69,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 44 (IFG)",
+                              "arealabel": "Area-44",
+                              "status": "publicP",
+                              "labelIndex": "2",
+                              "doi": "https://doi.org/10.25493/F9P8-ZVW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 45 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 45 (IFG)",
+                              "labelIndex": 71,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 45 (IFG)",
+                              "labelIndex": 71,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 45 (IFG)",
+                              "arealabel": "Area-45",
+                              "status": "publicP",
+                              "labelIndex": "1",
+                              "doi": "https://doi.org/10.25493/MR1V-BJ3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "inferior frontal gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dorsal precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6d2 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "labelIndex": 7,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "labelIndex": 7,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d2 (PreCG)",
+                              "arealabel": "Area-6d2",
+                              "status": "publicDOI",
+                              "labelIndex": "288",
+                              "doi": "https://doi.org/10.25493/KXHS-N90",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 6d1 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "labelIndex": 36,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "36"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "labelIndex": 36,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "36"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d1 (PreCG)",
+                              "arealabel": "Area-6d1",
+                              "status": "publicDOI",
+                              "labelIndex": "287",
+                              "doi": "https://doi.org/10.25493/4WSQ-8FM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dorsal precentral gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "posterior medial superior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "labelIndex": 25,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "labelIndex": 25,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "arealabel": "Area-6ma",
+                              "status": "publicP",
+                              "labelIndex": "299",
+                              "doi": "https://doi.org/10.25493/WVNR-SPT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "posterior medial superior frontal gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "children": [
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "labelIndex": 65,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "65"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "labelIndex": 66,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d3 (SFS)",
+                              "arealabel": "Area-6d3",
+                              "status": "publicDOI",
+                              "labelIndex": "289",
+                              "doi": "https://doi.org/10.25493/NVJ5-JJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior frontal sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "frontal pole",
+                      "children": [
+                        {
+                          "name": "Area Fp1 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "labelIndex": 101,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "labelIndex": 101,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp1 (FPole)",
+                              "arealabel": "Area-Fp1",
+                              "status": "publicP",
+                              "labelIndex": "212",
+                              "doi": "https://doi.org/10.25493/PTKW-R7W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fp2 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "labelIndex": 52,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "labelIndex": 52,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp2 (FPole)",
+                              "arealabel": "Area-Fp2",
+                              "status": "publicP",
+                              "labelIndex": "211",
+                              "doi": "https://doi.org/10.25493/GZW1-7R3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "frontal pole",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "precentral gyrus ",
+                      "children": [
+                        {
+                          "name": "Area 4p (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "labelIndex": 46,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "labelIndex": 46,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4p (PreCG)",
+                              "arealabel": "Area-4p",
+                              "status": "publicP",
+                              "labelIndex": "123",
+                              "doi": "https://doi.org/10.25493/5HSF-81J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 4a (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "labelIndex": 95,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "95"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "labelIndex": 96,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "96"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4a (PreCG)",
+                              "arealabel": "Area-4a",
+                              "status": "publicP",
+                              "labelIndex": "124",
+                              "doi": "https://doi.org/10.25493/PVPP-P3Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "precentral gyrus ",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "mesial precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "labelIndex": 21,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "21"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "labelIndex": 21,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "21"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "arealabel": "Area-6mp",
+                              "status": "publicP",
+                              "labelIndex": "298",
+                              "doi": "https://doi.org/10.25493/2E1T-47F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "mesial precentral gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "medial orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo1 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "labelIndex": 110,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "110"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "labelIndex": 111,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo1 (OFC)",
+                              "arealabel": "Area-Fo1",
+                              "status": "publicP",
+                              "labelIndex": "3",
+                              "doi": "https://doi.org/10.25493/H2N2-6J2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo3 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "labelIndex": 124,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "124"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "labelIndex": 123,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo3 (OFC)",
+                              "arealabel": "Area-Fo3",
+                              "status": "publicP",
+                              "labelIndex": "5",
+                              "doi": "https://doi.org/10.25493/E1YQ-65U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo2 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "labelIndex": 118,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "labelIndex": 118,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo2 (OFC)",
+                              "arealabel": "Area-Fo2",
+                              "status": "publicP",
+                              "labelIndex": "4",
+                              "doi": "https://doi.org/10.25493/3JB9-2V2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "medial orbitofrontal cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "frontal operculum ",
+                      "children": [
+                        {
+                          "name": "Area OP6 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "labelIndex": 39,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "labelIndex": 39,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "arealabel": "Area-OP6",
+                              "status": "publicDOI",
+                              "labelIndex": "349",
+                              "doi": "https://doi.org/10.25493/41KE-8HT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP8 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "labelIndex": 86,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "labelIndex": 86,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "arealabel": "Area-OP8",
+                              "status": "publicDOI",
+                              "labelIndex": "273",
+                              "doi": "https://doi.org/10.25493/NGF8-TA4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP5 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "labelIndex": 90,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "90"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "labelIndex": 90,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "90"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "arealabel": "Area-OP5",
+                              "status": "publicDOI",
+                              "labelIndex": "348",
+                              "doi": "https://doi.org/10.25493/TWFH-BJZ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP9 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "labelIndex": 62,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "labelIndex": 62,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "arealabel": "Area-OP9",
+                              "status": "publicDOI",
+                              "labelIndex": "274",
+                              "doi": "https://doi.org/10.25493/3A30-5E4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP7 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "labelIndex": 45,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "labelIndex": 45,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "arealabel": "Area-OP7",
+                              "status": "publicDOI",
+                              "labelIndex": "350",
+                              "doi": "https://doi.org/10.25493/T2M3-2ST",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "frontal operculum ",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "lateral orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo6 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "labelIndex": 113,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "labelIndex": 113,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo6 (OFC)",
+                              "arealabel": "Area-Fo6",
+                              "status": "publicDOI",
+                              "labelIndex": "326",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo5 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "labelIndex": 43,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "43"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "labelIndex": 43,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "43"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo5 (OFC)",
+                              "arealabel": "Area-Fo5",
+                              "status": "publicDOI",
+                              "labelIndex": "325",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo7 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "labelIndex": 70,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "labelIndex": 70,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo7 (OFC)",
+                              "arealabel": "Area-Fo7",
+                              "status": "publicDOI",
+                              "labelIndex": "327",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo4 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "labelIndex": 10,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "labelIndex": 10,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo4 (OFC)",
+                              "arealabel": "Area-Fo4",
+                              "status": "publicDOI",
+                              "labelIndex": "324",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "lateral orbitofrontal cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "frontal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "insula",
+                  "children": [
+                    {
+                      "name": "granular insula",
+                      "children": [
+                        {
+                          "name": "Area Ig3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "labelIndex": 8,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "labelIndex": 8,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig3 (Insula)",
+                              "arealabel": "Area-Ig3",
+                              "status": "publicDOI",
+                              "labelIndex": "336",
+                              "doi": "https://doi.org/10.25493/2FTZ-MWQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "labelIndex": 24,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "labelIndex": 24,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig1 (Insula)",
+                              "arealabel": "Area-Ig1",
+                              "status": "publicP",
+                              "labelIndex": "115",
+                              "doi": "https://doi.org/10.25493/EKV9-29D",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "labelIndex": 50,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "labelIndex": 50,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig2 (Insula)",
+                              "arealabel": "Area-Ig2",
+                              "status": "publicP",
+                              "labelIndex": "114",
+                              "doi": "https://doi.org/10.25493/662G-E0W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "granular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Ia (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ia (Insula)",
+                              "labelIndex": 81,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "81"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ia (Insula)",
+                              "labelIndex": 81,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "81"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ia (Insula)",
+                              "arealabel": "Area-Ia",
+                              "status": "publicDOI",
+                              "labelIndex": "339",
+                              "doi": "https://doi.org/10.25493/WW8G-T2G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "agranular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dys-agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id7 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "labelIndex": 107,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "107"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "labelIndex": 106,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "106"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id7 (Insula)",
+                              "arealabel": "Area-Id7",
+                              "status": "publicDOI",
+                              "labelIndex": "159",
+                              "doi": "https://doi.org/10.25493/88QG-JMS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dys-agranular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dysgranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "labelIndex": 55,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "labelIndex": 54,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "54"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id2 (Insula)",
+                              "arealabel": "Area-Id2",
+                              "status": "publicDOI",
+                              "labelIndex": "56",
+                              "doi": "https://doi.org10.25493/377R-T96",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "labelIndex": 72,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "labelIndex": 72,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id1 (Insula)",
+                              "arealabel": "Area-Id1",
+                              "status": "publicP",
+                              "labelIndex": "116",
+                              "doi": "https://doi.org/10.25493/F37H-8WB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id5 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "labelIndex": 74,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "74"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "labelIndex": 75,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id5 (Insula)",
+                              "arealabel": "Area-Id5",
+                              "status": "publicDOI",
+                              "labelIndex": "338",
+                              "doi": "https://doi.org/10.25493/5CK1-B1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id6 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "labelIndex": 58,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "labelIndex": 58,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id6 (Insula)",
+                              "arealabel": "Area-Id6",
+                              "status": "publicDOI",
+                              "labelIndex": "340",
+                              "doi": "https://doi.org/10.25493/54HZ-KFQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id4 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "labelIndex": 54,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "labelIndex": 55,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "55"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id4 (Insula)",
+                              "arealabel": "Area-Id4",
+                              "status": "publicDOI",
+                              "labelIndex": "337",
+                              "doi": "https://doi.org/10.25493/K63G-89H",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "labelIndex": 20,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "20"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "labelIndex": 20,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "20"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id3 (Insula)",
+                              "arealabel": "Area-Id3",
+                              "status": "publicDOI",
+                              "labelIndex": "57",
+                              "doi": "https://doi.org/10.25493/AE2S-KT6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dysgranular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "temporal lobe",
+                  "children": [
+                    {
+                      "name": "superior temporal sulcus",
+                      "children": [
+                        {
+                          "name": "Area STS2 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS2 (STS)",
+                              "labelIndex": 19,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS2 (STS)",
+                              "labelIndex": 19,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS2 (STS)",
+                              "arealabel": "Area-STS2",
+                              "status": "publicDOI",
+                              "labelIndex": "272",
+                              "doi": "https://doi.org/10.25493/KHY9-J3Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area STS1 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS1 (STS)",
+                              "labelIndex": 96,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "96"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS1 (STS)",
+                              "labelIndex": 95,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "95"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS1 (STS)",
+                              "arealabel": "Area-STS1",
+                              "status": "publicDOI",
+                              "labelIndex": "271",
+                              "doi": "https://doi.org/10.25493/F6DF-H8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior temporal sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "labelIndex": 31,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "labelIndex": 31,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 3 (STG)",
+                              "arealabel": "Area-TE-3",
+                              "status": "publicP",
+                              "labelIndex": "31",
+                              "doi": "https://doi.org/10.25493/BN5J-JT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.2 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "labelIndex": 120,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "120"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "labelIndex": 120,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "120"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.2 (STG)",
+                              "arealabel": "Area-TE-2.2",
+                              "status": "publicDOI",
+                              "labelIndex": "34",
+                              "doi": " https://doi.org/10.25493/RTTN-R5F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.1 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "labelIndex": 80,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "80"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "labelIndex": 80,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "80"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.1 (STG)",
+                              "arealabel": "Area-TE-2.1",
+                              "status": "publicDOI",
+                              "labelIndex": "28",
+                              "doi": "https://doi.org/10.25493/R28N-2TD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior temporal gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "temporal-insula",
+                      "children": [
+                        {
+                          "name": "Area TI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TI (STG)",
+                              "labelIndex": 26,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TI (STG)",
+                              "labelIndex": 26,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TI (STG)",
+                              "arealabel": "Area-TI",
+                              "status": "publicDOI",
+                              "labelIndex": "243",
+                              "doi": "https://doi.org/10.25493/57FA-VX6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TeI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TeI (STG)",
+                              "labelIndex": 123,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "123"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TeI (STG)",
+                              "labelIndex": 124,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TeI (STG)",
+                              "arealabel": "Area-TeI",
+                              "status": " publicDOI",
+                              "labelIndex": "242",
+                              "doi": "https://doi.org/10.25493/DTC3-EVM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "temporal-insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "Heschl's gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "labelIndex": 75,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "75"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "labelIndex": 74,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "arealabel": "Area-TE-1.2",
+                              "status": "publicP",
+                              "labelIndex": "30",
+                              "doi": "https://doi.org/10.25493/R382-617",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "labelIndex": 1,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "labelIndex": 1,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "arealabel": "Area-TE-1.1",
+                              "status": "publicP",
+                              "labelIndex": "33",
+                              "doi": "https://doi.org/10.25493/4HA3-BBE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "labelIndex": 18,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "labelIndex": 17,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "17"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "arealabel": "Area-TE-1.0",
+                              "status": "publicP",
+                              "labelIndex": "27",
+                              "doi": "https://doi.org/10.25493/MV3G-RET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "Heschl's gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "fusiform gyrus",
+                      "children": [
+                        {
+                          "name": "Area FG2 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "labelIndex": 40,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "labelIndex": 40,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG2 (FusG)",
+                              "arealabel": "Area-FG2",
+                              "status": "publicP",
+                              "labelIndex": "106",
+                              "doi": "https://doi.org/10.25493/F2JH-KVV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG3 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "labelIndex": 100,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "100"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "labelIndex": 99,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG3 (FusG)",
+                              "arealabel": "Area-FG3",
+                              "status": "publicP",
+                              "labelIndex": "239",
+                              "doi": "https://doi.org/10.25493/Z0F6-0SY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG1 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "labelIndex": 37,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "labelIndex": 37,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG1 (FusG)",
+                              "arealabel": "Area-FG1",
+                              "status": "publicP",
+                              "labelIndex": "107",
+                              "doi": "https://doi.org/10.25493/5ZVQ-R8R",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG4 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "labelIndex": 108,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "labelIndex": 108,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG4 (FusG)",
+                              "arealabel": "Area-FG4",
+                              "status": "publicP",
+                              "labelIndex": "238",
+                              "doi": "https://doi.org/10.25493/13RG-FYV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "fusiform gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "temporal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "overall",
+                  "children": [
+                    {
+                      "name": "overall",
+                      "children": [
+                        {
+                          "name": "Frontal-to-Occipital (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "labelIndex": 32,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "32"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "labelIndex": 33,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "arealabel": "Frontal-to-Occipital",
+                              "status": "publicP",
+                              "labelIndex": "504",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Temporal-to-Parietal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "labelIndex": 64,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "labelIndex": 64,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "arealabel": "Temporal-to-Parietal",
+                              "status": "publicP",
+                              "labelIndex": "503",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-I (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "labelIndex": 14,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "labelIndex": 14,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-I (GapMap)",
+                              "arealabel": "Frontal-I",
+                              "status": "publicP",
+                              "labelIndex": "500",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-to-Temporal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "labelIndex": 99,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "99"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "labelIndex": 100,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "arealabel": "Frontal-to-Temporal",
+                              "status": "publicP",
+                              "labelIndex": "502",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-II (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "labelIndex": 93,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "labelIndex": 93,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-II (GapMap)",
+                              "arealabel": "Frontal-II",
+                              "status": "publicP",
+                              "labelIndex": "501",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "overall",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "overall",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "limbic lobe",
+                  "children": [
+                    {
+                      "name": "cingulate gyrus, frontal part",
+                      "children": [
+                        {
+                          "name": "Area p24c (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24c (pACC)",
+                              "labelIndex": 29,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24c (pACC)",
+                              "labelIndex": 29,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24c (pACC)",
+                              "arealabel": "Area-p24c",
+                              "status": "publicP",
+                              "labelIndex": "232",
+                              "doi": "https://doi.org/10.25493/QA7B-JM9",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 25 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area 25 (sACC)",
+                              "labelIndex": 88,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 25 (sACC)",
+                              "labelIndex": 89,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "89"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 25 (sACC)",
+                              "arealabel": "Area-25",
+                              "status": "publicP",
+                              "labelIndex": "184",
+                              "doi": "https://doi.org/10.25493/51AM-WN4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p24ab (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "labelIndex": 28,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "labelIndex": 27,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "27"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24ab (pACC)",
+                              "arealabel": "Area-p24ab",
+                              "status": "publicP",
+                              "labelIndex": "231",
+                              "doi": "https://doi.org/10.25493/DHXC-2KN",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s32 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s32 (sACC)",
+                              "labelIndex": 103,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "103"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s32 (sACC)",
+                              "labelIndex": 103,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "103"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s32 (sACC)",
+                              "arealabel": "Area-s32",
+                              "status": "publicP",
+                              "labelIndex": "46",
+                              "doi": "https://doi.org/10.25493/XTRR-172",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 33 (ACC)",
+                          "children": [
+                            {
+                              "name": "Area 33 (ACC)",
+                              "labelIndex": 47,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 33 (ACC)",
+                              "labelIndex": 47,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 33 (ACC)",
+                              "arealabel": "Area-33",
+                              "status": "publicP",
+                              "labelIndex": "39",
+                              "doi": "https://doi.org/10.25493/X9QP-C6F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p32 (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p32 (pACC)",
+                              "labelIndex": 116,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p32 (pACC)",
+                              "labelIndex": 116,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p32 (pACC)",
+                              "arealabel": "Area-p32",
+                              "status": "publicP",
+                              "labelIndex": "47",
+                              "doi": "https://doi.org/10.25493/3JX0-7E5",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s24 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s24 (sACC)",
+                              "labelIndex": 112,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s24 (sACC)",
+                              "labelIndex": 112,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s24 (sACC)",
+                              "arealabel": "Area-s24",
+                              "status": "publicP",
+                              "labelIndex": "183",
+                              "doi": "https://doi.org/10.25493/HXWM-NRX",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "cingulate gyrus, frontal part",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "children": [
+                        {
+                          "name": "HC-Presubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "labelIndex": 3,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "labelIndex": 3,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "arealabel": "HC-Presubiculum",
+                              "status": "publicP",
+                              "labelIndex": "63",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HATA (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "labelIndex": 67,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "labelIndex": 67,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HATA (Hippocampus)",
+                              "arealabel": "HATA",
+                              "status": "publicP",
+                              "labelIndex": "68",
+                              "doi": "https://doi.org/10.25493/M1XP-VSQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Entorhinal Cortex",
+                          "children": [
+                            {
+                              "name": "Entorhinal Cortex",
+                              "labelIndex": 53,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Entorhinal Cortex",
+                              "labelIndex": 53,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Entorhinal Cortex",
+                              "arealabel": "Entorhinal-Cortex",
+                              "status": "publicP",
+                              "labelIndex": "60",
+                              "doi": "https://doi.org/10.25493/KNXY-B1Z",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA3 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "labelIndex": 91,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "91"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "labelIndex": 92,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "92"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA3 (Hippocampus)",
+                              "arealabel": "CA3",
+                              "status": "publicP",
+                              "labelIndex": "59",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Transsubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "labelIndex": 87,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "labelIndex": 87,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "arealabel": "HC-Transsubiculum",
+                              "status": "publicP",
+                              "labelIndex": "305",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Subiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "labelIndex": 63,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "labelIndex": 63,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "arealabel": "HC-Subiculum",
+                              "status": "publicP",
+                              "labelIndex": "67",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Prosubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "labelIndex": 49,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "49"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "labelIndex": 48,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "arealabel": "HC-Prosubiculum",
+                              "status": "publicP",
+                              "labelIndex": "64",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Parasubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "labelIndex": 60,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "60"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "labelIndex": 59,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "arealabel": "HC-Parasubiculum",
+                              "status": "publicP",
+                              "labelIndex": "62",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "DG (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "DG (Hippocampus)",
+                              "labelIndex": 22,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              }
+                            },
+                            {
+                              "name": "DG (Hippocampus)",
+                              "labelIndex": 22,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "DG (Hippocampus)",
+                              "arealabel": "DG",
+                              "status": "publicP",
+                              "labelIndex": "61",
+                              "doi": "https://doi.org/10.25493/M8JP-XQT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA2 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "labelIndex": 51,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "labelIndex": 51,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA2 (Hippocampus)",
+                              "arealabel": "CA2",
+                              "status": "publicP",
+                              "labelIndex": "58",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA1 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "labelIndex": 56,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "56"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "labelIndex": 57,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "57"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA1 (Hippocampus)",
+                              "arealabel": "CA1",
+                              "status": "publicP",
+                              "labelIndex": "66",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "hippocampal formation",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "limbic lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                }
+              ],
+              "_": {
+                "julichbrain-ontology_25.json": {
+                  "name": "cerebral cortex",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null
+                }
+              }
+            }
+          ],
+          "_": {
+            "julichbrain-ontology_25.json": {
+              "name": "telencephalon",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null
+            }
+          }
+        },
+        {
+          "name": "metencephalon",
+          "children": [
+            {
+              "name": "cerebellum",
+              "children": [
+                {
+                  "name": "cerebellar nuclei",
+                  "children": [
+                    {
+                      "name": "globose nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "globose nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dentate nucleus",
+                      "children": [
+                        {
+                          "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 16,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 18,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "18"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Dorsal-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "240",
+                              "doi": "https://doi.org/10.25493/M5QG-SHH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Ventral Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 66,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "66"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 65,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Ventral-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "241",
+                              "doi": "https://doi.org/10.25493/FQE5-5QR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dentate nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "fastigial nucleus",
+                      "children": [
+                        {
+                          "name": "Fastigial Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "labelIndex": 102,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "102"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "labelIndex": 102,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "102"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "arealabel": "Fastigial-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "219",
+                              "doi": "https://doi.org/10.25493/3YJ9-S6G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "fastigial nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "emboliform nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "ICBM152_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "ICBM152_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "emboliform nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "cerebellar nuclei",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                }
+              ],
+              "_": {
+                "julichbrain-ontology_25.json": {
+                  "name": "cerebellum",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null
+                }
+              }
+            }
+          ],
+          "_": {
+            "julichbrain-ontology_25.json": {
+              "name": "metencephalon",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null
+            }
+          }
+        }
+      ],
+      "_": {
+        "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201202_JulichBrainHierarchy/src/07a76da90bdbd35e56a01de817befbe6c12f91da/output/nehubaUI/icbm_regions.json"
+      }
+    },
     {
       "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
       "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
diff --git a/src/res/ext/MNI152NehubaConfig.json b/src/res/ext/MNI152NehubaConfig.json
index 20f685aeaf022076f14029c38f69ca59acf91330..a19a6ba72d7a8e02e32f1326b7bd080ef89401cf 100644
--- a/src/res/ext/MNI152NehubaConfig.json
+++ b/src/res/ext/MNI152NehubaConfig.json
@@ -23,7 +23,7 @@
       "mesh": {
         "removeBasedOnNavigation": true,
         "flipRemovedOctant": true,
-        "surfaceParcellation": false
+        "surfaceParcellation": true
       },
       "removePerspectiveSlicesBackground": {
         "mode": "<",
@@ -217,6 +217,130 @@
             ]
           ]
         },
+        "MNI152_V25_RIGHT_NG_SPLIT_HEMISPHERE": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201204_JulichBrainV3_0_hemisphereSplit/precomputed/JuBrain_Map_icbm_v30_r",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -96500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -132500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -78500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "MNI152_V25_LEFT_NG_SPLIT_HEMISPHERE": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201204_JulichBrainV3_0_hemisphereSplit/precomputed/JuBrain_Map_icbm_v30_l",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -96500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -132500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -78500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "ICBM152_V25_LEFT_NG": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201202_JulichBrainV2_5_colin_MPM/precomputed/JulichBrain_MPMAtlas_l_N10_nlin2Stdicbm152asym2009c_publicDOI_3f5ec6016bc2242769c41befdbc1b2e0",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -96500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -132500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -78500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "ICBM152_V25_RIGHT_NG": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201202_JulichBrainV2_5_colin_MPM/precomputed/JulichBrain_MPMAtlas_r_N10_nlin2Stdicbm152asym2009c_publicDOI_453c4c95827e38dcce5372b200065cba",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -96500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -132500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -78500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
         "ICBM152_V24_LEFT_NG": {
           "type": "segmentation",
           "visible": true,
diff --git a/src/res/ext/atlas/atlas_multiLevelHuman.json b/src/res/ext/atlas/atlas_multiLevelHuman.json
index 9f2c680338253486a3dd1f26a3c7ed552b2780ba..54b1f28a76d67dfbff51f45162f06c0b33b1f78b 100644
--- a/src/res/ext/atlas/atlas_multiLevelHuman.json
+++ b/src/res/ext/atlas/atlas_multiLevelHuman.json
@@ -8,9 +8,17 @@
       "name": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
       "displayName": "ICBM 152 2009c Nonlinear Asymmetric",
       "availableIn": [
+        {
+          "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+          "name": "Cytoarchitectonic maps - v2.5.1"
+        },
+        {
+          "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+          "name": "Cytoarchitectonic maps - v2.5"
+        },
         {
           "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
-          "name": "Cytoarchitectonic maps"
+          "name": "Cytoarchitectonic maps - v2.4"
         },
         {
           "@id": "juelich/iav/atlas/v1.0.0/8",
@@ -55,9 +63,17 @@
       "@id": "minds/core/referencespace/v1.0.0/7f39f7be-445b-47c0-9791-e971c0b6d992",
       "name": "MNI Colin 27",
       "availableIn": [
+        {
+          "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+          "name": "Cytoarchitectonic maps - v2.5.1"
+        },
+        {
+          "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+          "name": "Cytoarchitectonic maps - v2.5"
+        },
         {
           "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
-          "name": "Cytoarchitectonic maps"
+          "name": "Cytoarchitectonic maps - v2.4"
         },
         {
           "@id": "juelich/iav/atlas/v1.0.0/8",
@@ -130,11 +146,65 @@
       ]
     },
     {
-      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
       "name": "Cytoarchitectonic maps",
       "baseLayer": true,
       "@version": {
         "@next": null,
+        "@this": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+        "name": "v2.5.1",
+        "@previous": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25"
+      },
+      "availableIn": [
+        {
+          "@id": "minds/core/referencespace/v1.0.0/dafcffc5-4826-4bf1-8ff6-46b8a31ff8e2",
+          "name": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+          "originalDatasetFormats": [{
+            "name": "probability map"
+          }]
+        },
+        {
+          "@id": "minds/core/referencespace/v1.0.0/7f39f7be-445b-47c0-9791-e971c0b6d992",
+          "name": "MNI Colin 27",
+          "originalDatasetFormats": [{
+            "name": "probability map"
+          }]
+        }
+      ]
+    },
+    {
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+      "name": "Cytoarchitectonic maps",
+      "baseLayer": true,
+      "@version": {
+        "@next": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+        "@this": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+        "name": "v2.5",
+        "@previous": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579"
+      },
+      "availableIn": [
+        {
+          "@id": "minds/core/referencespace/v1.0.0/dafcffc5-4826-4bf1-8ff6-46b8a31ff8e2",
+          "name": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+          "originalDatasetFormats": [{
+            "name": "probability map"
+          }]
+        },
+        {
+          "@id": "minds/core/referencespace/v1.0.0/7f39f7be-445b-47c0-9791-e971c0b6d992",
+          "name": "MNI Colin 27",
+          "originalDatasetFormats": [{
+            "name": "probability map"
+          }]
+        }
+      ]
+    },
+    {
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
+      "name": "Cytoarchitectonic maps",
+      "baseLayer": true,
+      "@version": {
+        "@next": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
         "@this": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
         "name": "v2.4",
         "@previous": "juelich/iav/atlas/v1.0.0/8"
diff --git a/src/res/ext/colin.json b/src/res/ext/colin.json
index 4fab4579d34c4bcd6507f3273d04c6ce8c88d9d9..615812921d7a5b3b043375cdfa774b9cc287134b 100644
--- a/src/res/ext/colin.json
+++ b/src/res/ext/colin.json
@@ -8,6 +8,15508 @@
   "ngId": "colin",
   "nehubaConfigURL": "nehubaConfig/colinNehubaConfig",
   "parcellations": [
+    {
+      "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25-1",
+      "name": "Cytoarchitectonic Maps - v2.5.1",
+      "auxillaryMeshIndices": [
+        65535
+      ],
+      "hasAdditionalViewMode": [],
+      "originDatasets": [
+        {
+          "kgSchema": "minds/core/dataset/v1.0.0",
+          "kgId": "5249afa7-5e04-4ffd-8039-c3a9231f717c"
+        }
+      ],
+      "properties": {
+        "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI ICBM 2009c Asymmetric as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.",
+        "publications": [
+          {
+            "doi": "https://doi.org/10.1038/nrn2776",
+            "citation": "Zilles K, Amunts K (2010) Centenary of Brodmann’s map – conception and fate. Nature Reviews Neuroscience 11(2): 139-145 "
+          },
+          {
+            "doi": "https://doi.org/10.1016/j.neuroimage.2007.02.037",
+            "citation": "Amunts K, Schleicher A, Zilles K (2007) Cytoarchitecture of the cerebral cortex – more than localization. Neuroimage 37: 1061-1065"
+          },
+          {
+            "doi": "http://dx.doi.org/10.1016/B978-012693019-1/50023-X",
+            "citation": "Zilles K, Schleicher A, Palomero-Gallagher N, Amunts K (2002) Quantitative analysis of cyto- and receptor architecture of the human brain. In: /Brain Mapping: The Methods/, J. C. Mazziotta and A. Toga (eds.), USA: Elsevier, 2002, p. 573-602."
+          }
+        ]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "children": [
+            {
+              "name": "cerebral nuclei",
+              "children": [
+                {
+                  "name": "basal forebrain",
+                  "children": [
+                    {
+                      "name": "magnocellular group within septum",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "left hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "right hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "sublenticular part of basal forebrain",
+                      "children": [
+                        {
+                          "name": "Ch 4 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "status": "left hemisphere",
+                              "labelIndex": 97,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "791a14c8-b899-414f-b237-27574a4cce7e"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "status": "right hemisphere",
+                              "labelIndex": 97,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 4 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "791a14c8-b899-414f-b237-27574a4cce7e"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a5c9d95f-8e7c-4454-91b6-a790387370fc"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "arealabel": "Ch-4",
+                              "status": "publicP",
+                              "labelIndex": "264",
+                              "doi": "https://doi.org/10.25493/VZJ5-8WJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "magnocellular group within horizontal limb of diagnoal band",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "left hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "status": "right hemisphere",
+                              "labelIndex": 62,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ch 123 (Basal Forebrain) [v4.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "147aaab9-d5f2-48db-80f3-95adc9e7e8a6"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bb111a95-e04c-4987-8254-4af4ed8b0022"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "amygdala",
+                  "children": [
+                    {
+                      "name": "laterobasal group",
+                      "children": [
+                        {
+                          "name": "LB (Amygdala)",
+                          "children": [
+                            {
+                              "name": "LB (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 41,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "LB (Amygdala) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf"
+                                }
+                              }
+                            },
+                            {
+                              "name": "LB (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 41,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "LB (Amygdala) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa4cab6a-1cec-4cec-b481-90aa0cc7d96c"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "708df0fa-e9a4-4c23-bd85-8957f6d30faf"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "LB (Amygdala)",
+                              "arealabel": "LB",
+                              "status": "publicP",
+                              "labelIndex": "187",
+                              "doi": "https://doi.org/10.25493/C3X0-NV3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superficial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "SF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "SF (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 5,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "SF (Amygdala) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "48929163-bf7b-4471-9f14-991c5225eced"
+                                }
+                              }
+                            },
+                            {
+                              "name": "SF (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 5,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "SF (Amygdala) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "37a6a7d9-5252-4605-a792-6fefe2fde816"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "48929163-bf7b-4471-9f14-991c5225eced"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "SF (Amygdala)",
+                              "arealabel": "SF",
+                              "status": "publicP",
+                              "labelIndex": "185",
+                              "doi": "https://doi.org/10.25493/WD31-SEA",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fiber masses",
+                      "children": [
+                        {
+                          "name": "VTM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "VTM (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 109,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "VTM (Amygdala) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2"
+                                }
+                              }
+                            },
+                            {
+                              "name": "VTM (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 109,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "VTM (Amygdala) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "9428d48e-f222-4191-96b8-02d3fa6068da"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a964e6e6-8014-41a2-b975-754d75cbb6f2"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "VTM (Amygdala)",
+                              "arealabel": "VTM",
+                              "status": "publicP",
+                              "labelIndex": "228",
+                              "doi": "https://doi.org/10.25493/99HN-XRE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "IF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "IF (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 46,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "IF (Amygdala) [v8.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07"
+                                }
+                              }
+                            },
+                            {
+                              "name": "IF (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 46,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "IF (Amygdala) [v8.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3acdb92c-68f0-42db-a7af-9dbb69cbea1d"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5a1391c8-6056-40e4-a19b-3774df42bd07"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "IF (Amygdala)",
+                              "arealabel": "IF",
+                              "status": "publicP",
+                              "labelIndex": "237",
+                              "doi": "https://doi.org/10.25493/GWPR-G6K",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "MF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "MF (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 123,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "MF (Amygdala) [v8.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca"
+                                }
+                              }
+                            },
+                            {
+                              "name": "MF (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 123,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "MF (Amygdala) [v8.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1ea87428-a211-439f-b258-40fa3e3363c9"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3741c788-9412-4b8e-9ab4-9ca2d3a715ca"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "MF (Amygdala)",
+                              "arealabel": "MF",
+                              "status": "publicP",
+                              "labelIndex": "235",
+                              "doi": "https://doi.org/10.25493/9375-55V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "centromedial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "left hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "status": "right hemisphere",
+                              "labelIndex": 85,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CM (Amygdala) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "21ed6af0-5c39-4153-a3b8-8983530436ac"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7aba8aef-6430-4fa7-ab54-8ecac558faed"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "name": "cerebral cortex",
+              "children": [
+                {
+                  "name": "parietal lobe",
+                  "children": [
+                    {
+                      "name": "superior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area 5L (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5L (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 83,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "98"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5L (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff"
+                                }
+                              ],
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5L (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 83,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "97"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5L (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1100df93-93f4-4091-bf2e-6eb48a2d56ff"
+                                }
+                              ],
+                              "rgb": [
+                                184,
+                                185,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "64555f7f-1b33-4ffe-9853-be41e7a21096"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5L (SPL)",
+                              "arealabel": "Area-5L",
+                              "status": "publicP",
+                              "labelIndex": "130",
+                              "doi": "https://doi.org/10.25493/C1FQ-2F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7M (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 124,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7M (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1715e680-a492-49a2-8f54-025aa41819da"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158"
+                              }
+                            },
+                            {
+                              "name": "Area 7M (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 124,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7M (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1715e680-a492-49a2-8f54-025aa41819da"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                "kgId": "0aacea5c-bc9e-483f-8376-25f176ada158"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7M (SPL)",
+                              "arealabel": "Area-7M",
+                              "status": "publicP",
+                              "labelIndex": "135",
+                              "doi": "https://doi.org/10.25493/F25F-EKW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7PC (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 4,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7PC (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 4,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7PC (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8cc9b1dd-caa6-49d5-85f1-1e2e78be3161"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                89,
+                                28
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "763140d3-7ba0-4f28-b0ac-c6cbda2d14e1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7PC (SPL)",
+                              "arealabel": "Area-7PC",
+                              "status": "publicP",
+                              "labelIndex": "132",
+                              "doi": "https://doi.org/10.25493/Z45N-1T",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5M (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 26,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "97"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5M (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5M (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 26,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "98"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5M (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5ddbc06e-b30c-4d44-a4c0-107210a66b4f"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                245,
+                                76
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "abe105cf-2c29-46af-af75-6b46fdb75137"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5M (SPL)",
+                              "arealabel": "Area-5M",
+                              "status": "publicP",
+                              "labelIndex": "131",
+                              "doi": "https://doi.org/10.25493/Y12F-YMU",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7P (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7P (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 24,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "35"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7P (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476"
+                                }
+                              ],
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7P (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 24,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "36"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7P (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5fd792b5-c306-4fb4-8d29-205dc3536476"
+                                }
+                              ],
+                              "rgb": [
+                                52,
+                                20,
+                                106
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af9c4f39-63a4-409f-b306-e5965d639f37"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7P (SPL)",
+                              "arealabel": "Area-7P",
+                              "status": "publicP",
+                              "labelIndex": "208",
+                              "doi": "https://doi.org/10.25493/C3HS-8R7",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5Ci (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 88,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5Ci (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651"
+                                }
+                              ],
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 88,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 5Ci (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fe83803d-f6dc-4341-98a0-a5aeccd63651"
+                                }
+                              ],
+                              "rgb": [
+                                79,
+                                242,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07d08f74-af3d-4cbe-bc3c-f32b7f5c989f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5Ci (SPL)",
+                              "arealabel": "Area-5Ci",
+                              "status": "publicP",
+                              "labelIndex": "136",
+                              "doi": "https://doi.org/10.25493/SQVP-GK1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7A (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7A (SPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 17,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7A (SPL) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2635688-3894-471f-88db-c065871582de"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7A (SPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 17,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 7A (SPL) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2635688-3894-471f-88db-c065871582de"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                204,
+                                19
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e26e999f-77ad-4934-9569-8290ed05ebda"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7A (SPL)",
+                              "arealabel": "Area-7A",
+                              "status": "publicP",
+                              "labelIndex": "134",
+                              "doi": "https://doi.org/10.25493/7HX2-AJH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parietal operculum",
+                      "children": [
+                        {
+                          "name": "Area OP3 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 22,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP3 (POperc) [v12.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 22,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP3 (POperc) [v12.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "eddb0ef1-21d6-4271-ad36-f6c81ddba642"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                122,
+                                80
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f6f10b01-6c10-42cf-8129-f5aaf307a36b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP3 (POperc)",
+                              "arealabel": "Area-OP3",
+                              "status": "publicP",
+                              "labelIndex": "75",
+                              "doi": "https://doi.org/10.25493/1Z8F-PX4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP4 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 14,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP4 (POperc) [v12.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "55213785-8693-438c-8f6b-7628609b4017"
+                                }
+                              ],
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 14,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP4 (POperc) [v12.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "55213785-8693-438c-8f6b-7628609b4017"
+                                }
+                              ],
+                              "rgb": [
+                                89,
+                                80,
+                                132
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b1e7f0d2-6d37-4047-9c2e-a08c3f1e2a16"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP4 (POperc)",
+                              "arealabel": "Area-OP4",
+                              "status": "publicP",
+                              "labelIndex": "72",
+                              "doi": "https://doi.org/10.25493/BVT0-H3U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP2 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 122,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP2 (POperc) [v12.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8"
+                                }
+                              ],
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 122,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP2 (POperc) [v12.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "0a3e9feb-5816-4593-a5c8-ca4b9099f7b8"
+                                }
+                              ],
+                              "rgb": [
+                                36,
+                                47,
+                                221
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "ab26cefd-f7d6-4442-8020-a6e418e673ff"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP2 (POperc)",
+                              "arealabel": "Area-OP2",
+                              "status": "publicP",
+                              "labelIndex": "74",
+                              "doi": "https://doi.org/10.25493/5KBV-36J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP1 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "status": "left hemisphere",
+                              "labelIndex": 1,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "56"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP1 (POperc) [v12.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "402ec28d-0809-4226-91a4-900d9303291b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "status": "right hemisphere",
+                              "labelIndex": 1,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "57"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP1 (POperc) [v12.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1802ffb1-6d1a-4c1a-a7d9-170664a98b49"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                182,
+                                34
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "402ec28d-0809-4226-91a4-900d9303291b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP1 (POperc)",
+                              "arealabel": "Area-OP1",
+                              "status": "publicP",
+                              "labelIndex": "73",
+                              "doi": "https://doi.org/10.25493/SH37-979",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "postcentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 3b (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 37,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3b (PostCG) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 37,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3b (PostCG) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "50ac42dd-5808-459c-882a-dbd98c76999c"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                246,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b84f67bb-5d9f-4daf-a8d6-15f63f901bd4"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3b (PostCG)",
+                              "arealabel": "Area-3b",
+                              "status": "publicP",
+                              "labelIndex": "127",
+                              "doi": "https://doi.org/10.25493/2JK3-QXR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 1 (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 116,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 1 (PostCG) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9"
+                                }
+                              ],
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 116,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 1 (PostCG) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ce8c8428-02fe-42f8-9a76-d297579b71c9"
+                                }
+                              ],
+                              "rgb": [
+                                232,
+                                185,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c9753e82-80ca-4074-a704-9dd2c4c0d58b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 1 (PostCG)",
+                              "arealabel": "Area-1",
+                              "status": "publicP",
+                              "labelIndex": "125",
+                              "doi": "https://doi.org/10.25493/THB5-B64",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 2 (PostCS)",
+                          "children": [
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 49,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 2 (PostCS) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e81716df-d1ab-417b-b69c-3da566aab026"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 49,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 2 (PostCS) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e81716df-d1ab-417b-b69c-3da566aab026"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                13,
+                                35
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9147ae9-5cf0-41b2-89a3-e6e6df07bef1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 2 (PostCS)",
+                              "arealabel": "Area-2",
+                              "status": "publicP",
+                              "labelIndex": "252",
+                              "doi": "https://doi.org/10.25493/QA8F-DD2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 3a (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 121,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3a (PostCG) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf"
+                                }
+                              ],
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 121,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 3a (PostCG) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d2c20dce-122e-4c69-922a-1f33909496cf"
+                                }
+                              ],
+                              "rgb": [
+                                187,
+                                133,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2657ecc1-da69-4a37-9b37-66ae95f9623c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3a (PostCG)",
+                              "arealabel": "Area-3a",
+                              "status": "publicP",
+                              "labelIndex": "126",
+                              "doi": "https://doi.org/10.25493/C5QQ-EFB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "inferior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area PF (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PF (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 12,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "5"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PF (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PF (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 12,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "4"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PF (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e1528fe1-a812-44d9-a0ca-f738b0e705e3"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                211,
+                                61
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "18e5e1b0-6c25-4f55-a967-0834d2bd3ee4"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PF (IPL)",
+                              "arealabel": "Area-PF",
+                              "status": "publicP",
+                              "labelIndex": "206",
+                              "doi": "https://doi.org/10.25493/F1TJ-54W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFcm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 103,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFcm (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03520da2-e553-4284-84e4-d8b293446cd4"
+                                }
+                              ],
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 103,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFcm (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03520da2-e553-4284-84e4-d8b293446cd4"
+                                }
+                              ],
+                              "rgb": [
+                                98,
+                                128,
+                                120
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10502c3a-f20e-44fa-b985-786d6888d4bb"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFcm (IPL)",
+                              "arealabel": "Area-PFcm",
+                              "status": "publicP",
+                              "labelIndex": "113",
+                              "doi": "https://doi.org/10.25493/8DP8-8HE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGa (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGa (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 81,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGa (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc"
+                                }
+                              ],
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGa (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 81,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGa (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "25451957-c246-4a42-99d4-07c88d4e78fc"
+                                }
+                              ],
+                              "rgb": [
+                                42,
+                                236,
+                                131
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7f6c5be-93c6-4a16-8939-4420329d4147"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGa (IPL)",
+                              "arealabel": "Area-PGa",
+                              "status": "publicP",
+                              "labelIndex": "110",
+                              "doi": "https://doi.org/10.25493/V5HY-XTS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFt (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFt (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 20,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFt (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b5375459-2b03-4c67-a125-25c923180017"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "847cef50-7340-470d-8580-327b4ce9db19"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFt (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 20,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFt (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b5375459-2b03-4c67-a125-25c923180017"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                135,
+                                232
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "847cef50-7340-470d-8580-327b4ce9db19"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFt (IPL)",
+                              "arealabel": "Area-PFt",
+                              "status": "publicP",
+                              "labelIndex": "109",
+                              "doi": "https://doi.org/10.25493/JGM9-ZET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFm (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 102,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFm (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0"
+                                }
+                              ],
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "411edde9-685f-464b-970c-a929f9a4067c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFm (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 102,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFm (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3a076c3e-75f4-4626-a0e8-f23bcf8b8ef0"
+                                }
+                              ],
+                              "rgb": [
+                                53,
+                                76,
+                                145
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "411edde9-685f-464b-970c-a929f9a4067c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFm (IPL)",
+                              "arealabel": "Area-PFm",
+                              "status": "publicP",
+                              "labelIndex": "112",
+                              "doi": "https://doi.org/10.25493/TB94-HRK",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGp (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGp (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 65,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGp (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96"
+                                }
+                              ],
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGp (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 65,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PGp (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2105576e-e1b0-4e03-9cb4-8c2b65be2f96"
+                                }
+                              ],
+                              "rgb": [
+                                92,
+                                116,
+                                83
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b3ef6947-76c9-4935-bbc6-8b2329c0967b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGp (IPL)",
+                              "arealabel": "Area-PGp",
+                              "status": "publicP",
+                              "labelIndex": "108",
+                              "doi": "https://doi.org/10.25493/FPFJ-ZCD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFop (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFop (IPL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 94,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "114"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFop (IPL) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f"
+                                }
+                              ],
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8262e56-88fe-4006-b078-def4d78416b8"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFop (IPL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 94,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "115"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area PFop (IPL) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "29c1cad2-0a55-49ec-b7f5-a9acf5db7c1f"
+                                }
+                              ],
+                              "rgb": [
+                                146,
+                                153,
+                                177
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8262e56-88fe-4006-b078-def4d78416b8"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFop (IPL)",
+                              "arealabel": "Area-PFop",
+                              "status": "publicP",
+                              "labelIndex": "111",
+                              "doi": "https://doi.org/10.25493/M2PM-92Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 69,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hPO1 (POS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 69,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hPO1 (POS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7593b453-f916-4bd0-ae2b-d4cbff307428"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                232,
+                                235
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a78998c2-99d4-4738-bbda-82a317f713f1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hPO1 (POS)",
+                              "arealabel": "Area-hPO1",
+                              "status": "publicP",
+                              "labelIndex": "297",
+                              "doi": "https://doi.org/10.25493/W50A-FAP",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "intraparietal sulcus",
+                      "children": [
+                        {
+                          "name": "Area hIP1 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 32,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP1 (IPS) [v7.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3367db70-cd25-4834-9646-9604308dfa02"
+                                }
+                              ],
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 32,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP1 (IPS) [v7.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "3367db70-cd25-4834-9646-9604308dfa02"
+                                }
+                              ],
+                              "rgb": [
+                                66,
+                                149,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7722c71f-fe84-4deb-8f6b-98e2aecf2e31"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP1 (IPS)",
+                              "arealabel": "Area-hIP1",
+                              "status": "publicP",
+                              "labelIndex": "128",
+                              "doi": "https://doi.org/10.25493/92FE-7S6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 35,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "120"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP7 (IPS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "aff5df97-f341-4370-97af-58d9f40c9877"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 35,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "120"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP7 (IPS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "aff5df97-f341-4370-97af-58d9f40c9877"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                196,
+                                218
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9c6c3c96-8129-4e0e-aa22-a0fb435aab45"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP7 (IPS)",
+                              "arealabel": "Area-hIP7",
+                              "status": "publicP",
+                              "labelIndex": "296",
+                              "doi": "https://doi.org/10.25493/WRCY-8Z1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP3 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 75,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "43"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP3 (IPS) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93"
+                                }
+                              ],
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "700ac6db-870d-44f1-8786-0c01207f992b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 75,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "43"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP3 (IPS) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bd1062af-e9c5-4b8d-9742-2172be4fef93"
+                                }
+                              ],
+                              "rgb": [
+                                113,
+                                172,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "700ac6db-870d-44f1-8786-0c01207f992b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP3 (IPS)",
+                              "arealabel": "Area-hIP3",
+                              "status": "publicP",
+                              "labelIndex": "133",
+                              "doi": "https://doi.org/10.25493/P8X0-V1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP2 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 59,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP2 (IPS) [v7.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61"
+                                }
+                              ],
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 59,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP2 (IPS) [v7.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a8ee352c-13fc-45fd-9522-c7ac9de9bd61"
+                                }
+                              ],
+                              "rgb": [
+                                127,
+                                245,
+                                203
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "4490ef3e-ce60-4453-9e9f-85388d0603cb"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP2 (IPS)",
+                              "arealabel": "Area-hIP2",
+                              "status": "publicP",
+                              "labelIndex": "129",
+                              "doi": "https://doi.org/10.25493/EJTM-NDY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 115,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP4 (IPS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46"
+                                }
+                              ],
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 115,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP4 (IPS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f2ec3ab5-c604-4dd6-b941-ffc37288cc46"
+                                }
+                              ],
+                              "rgb": [
+                                254,
+                                52,
+                                184
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5875bfe2-99ca-4e50-bce2-61c201c3dd54"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP4 (IPS)",
+                              "arealabel": "Area-hIP4",
+                              "status": "publicP",
+                              "labelIndex": "294",
+                              "doi": "https://doi.org/10.25493/TSEN-QSY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 7,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP5 (IPS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "24b2682f-5c82-4439-8278-bc526b530030"
+                                }
+                              ],
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 7,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP5 (IPS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "24b2682f-5c82-4439-8278-bc526b530030"
+                                }
+                              ],
+                              "rgb": [
+                                217,
+                                87,
+                                210
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f9717dec-0310-4078-a4ae-294170b4fb37"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP5 (IPS)",
+                              "arealabel": "Area-hIP5",
+                              "status": "publicP",
+                              "labelIndex": "295",
+                              "doi": "https://doi.org/10.25493/RNSM-Y4Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 95,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP6 (IPS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80"
+                                }
+                              ],
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 95,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP6 (IPS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e51da69b-f5de-49d5-9566-6fde3ef14d80"
+                                }
+                              ],
+                              "rgb": [
+                                237,
+                                233,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b9975f8e-f484-4e82-883a-5fd765855ae0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP6 (IPS)",
+                              "arealabel": "Area-hIP6",
+                              "status": "publicP",
+                              "labelIndex": "292",
+                              "doi": "https://doi.org/10.25493/AFQR-50Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP8 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 50,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP8 (IPS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2dba112f-075c-4dba-813d-e408ff429586"
+                                }
+                              ],
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 50,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hIP8 (IPS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2dba112f-075c-4dba-813d-e408ff429586"
+                                }
+                              ],
+                              "rgb": [
+                                223,
+                                109,
+                                3
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a2c1acc7-7fdc-4fbd-90ee-729eda7fdff3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP8 (IPS)",
+                              "arealabel": "Area-hIP8",
+                              "status": "publicP",
+                              "labelIndex": "293",
+                              "doi": "https://doi.org/10.25493/YYT8-FT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "occiptal lobe",
+                  "children": [
+                    {
+                      "name": "dorsal occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc6 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 72,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc6 (POS) [v7.1, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 72,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc6 (POS) [v7.1, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3a24a48-3d23-4d92-9de6-e13dc888f1b5"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                66,
+                                26
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d72e0210-a910-4b15-bcaf-80c3433cd3e0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc6 (POS)",
+                              "arealabel": "Area-hOc6",
+                              "status": "publicP",
+                              "labelIndex": "291",
+                              "doi": "https://doi.org/10.25493/4101-1ZG",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 44,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4d (Cuneus) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "704230e3-434b-45d7-875c-05600272f01a"
+                                }
+                              ],
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8120426c-f65b-4426-8a58-3060e2334921"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 44,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4d (Cuneus) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "704230e3-434b-45d7-875c-05600272f01a"
+                                }
+                              ],
+                              "rgb": [
+                                109,
+                                218,
+                                10
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8120426c-f65b-4426-8a58-3060e2334921"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4d (Cuneus)",
+                              "arealabel": "Area-hOc4d",
+                              "status": "publicP",
+                              "labelIndex": "119",
+                              "doi": "https://doi.org/10.25493/VSK5-DET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc3d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 106,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "81"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3d (Cuneus) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 106,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "82"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3d (Cuneus) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "13c8ab3f-ec22-4f61-8abb-fca2d5fbbdbc"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                191,
+                                48
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d7ec4342-ae58-41e3-a68c-28e90a719d41"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3d (Cuneus)",
+                              "arealabel": "Area-hOc3d",
+                              "status": "publicP",
+                              "labelIndex": "120",
+                              "doi": "https://doi.org/10.25493/F9X3-JVJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "ventral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc3v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 77,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3v (LingG) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625"
+                                }
+                              ],
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 77,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc3v (LingG) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "76b837d8-5c64-4c50-b825-efbbe72f6625"
+                                }
+                              ],
+                              "rgb": [
+                                83,
+                                179,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0d6392fd-b905-4bc3-bac9-fc44d8990a30"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3v (LingG)",
+                              "arealabel": "Area-hOc3v",
+                              "status": "publicP",
+                              "labelIndex": "10",
+                              "doi": "https://doi.org/10.25493/E5E8-1VV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 58,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "115"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4v (LingG) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 58,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "114"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4v (LingG) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e2d948e4-f52d-4f02-a635-017f3c71186c"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                77,
+                                155
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "27d91cbb-5611-4d38-bd17-c0f1ac22b4cc"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4v (LingG)",
+                              "arealabel": "Area-hOc4v",
+                              "status": "publicP",
+                              "labelIndex": "9",
+                              "doi": "https://doi.org/10.25493/AASR-M8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "children": [
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "status": "left hemisphere",
+                              "labelIndex": 21,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc2 (V2, 18) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0"
+                                }
+                              ],
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "04674a3c-bb3a-495e-a466-206355e630bd"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "status": "right hemisphere",
+                              "labelIndex": 21,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc2 (V2, 18) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fa2af93e-c0bb-4c76-bdfe-52776a37d0c0"
+                                }
+                              ],
+                              "rgb": [
+                                84,
+                                110,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "04674a3c-bb3a-495e-a466-206355e630bd"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc2 (V2, 18)",
+                              "arealabel": "Area-hOc2",
+                              "status": "publicP",
+                              "labelIndex": "7",
+                              "doi": "https://doi.org/10.25493/QG9C-THD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "children": [
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 120,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc1 (V1, 17, CalcS) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07"
+                                }
+                              ],
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 120,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc1 (V1, 17, CalcS) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "5c669b77-c981-424a-858d-fe9f527dbc07"
+                                }
+                              ],
+                              "rgb": [
+                                190,
+                                132,
+                                147
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5151ab8f-d8cb-4e67-a449-afe2a41fb007"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "arealabel": "Area-hOc1",
+                              "status": "publicP",
+                              "labelIndex": "8",
+                              "doi": "https://doi.org/10.25493/MXJ6-6DH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc4lp (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 51,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4lp (LOC) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697"
+                                }
+                              ],
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 51,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4lp (LOC) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "487f86a9-2637-4cd1-bb33-f2b0db904697"
+                                }
+                              ],
+                              "rgb": [
+                                96,
+                                113,
+                                253
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9006ee6a-6dc1-4604-9f20-7e08b42d574d"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4lp (LOC)",
+                              "arealabel": "Area-hOc4lp",
+                              "status": "publicP",
+                              "labelIndex": "117",
+                              "doi": "https://doi.org/10.25493/4B87-Q8X",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc5 (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 16,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "106"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc5 (LOC) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 16,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "107"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc5 (LOC) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "84897b6c-78d3-4dd4-bea9-dbb6459fba20"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                0,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b40afb5a-e6a1-47b6-8a3e-1f8a20fbf99a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc5 (LOC)",
+                              "arealabel": "Area-hOc5",
+                              "status": "publicP",
+                              "labelIndex": "6",
+                              "doi": "https://doi.org/10.25493/2WSH-MCT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4la (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 29,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "4"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4la (LOC) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4"
+                                }
+                              ],
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "94365b82-6204-4937-8b86-fe0433287938"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 29,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "5"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area hOc4la (LOC) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "304342d8-5d55-4dea-a97e-39dccc72a7a4"
+                                }
+                              ],
+                              "rgb": [
+                                233,
+                                168,
+                                189
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "94365b82-6204-4937-8b86-fe0433287938"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4la (LOC)",
+                              "arealabel": "Area-hOc4la",
+                              "status": "publicP",
+                              "labelIndex": "118",
+                              "doi": "https://doi.org/10.25493/Z9JX-WKB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "frontal lobe",
+                  "children": [
+                    {
+                      "name": "inferior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 44 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 44 (IFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 92,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 44 (IFG) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369"
+                                }
+                              ],
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 44 (IFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 92,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 44 (IFG) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8f180ff1-20d1-4112-9e71-a5c7eca6c369"
+                                }
+                              ],
+                              "rgb": [
+                                54,
+                                74,
+                                75
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "8a6be82c-5947-4fff-8348-cf9bf73e4f40"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 44 (IFG)",
+                              "arealabel": "Area-44",
+                              "status": "publicP",
+                              "labelIndex": "2",
+                              "doi": "https://doi.org/10.25493/F9P8-ZVW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 45 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 45 (IFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 112,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 45 (IFG) [v9.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47"
+                                }
+                              ],
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cb32e688-43f0-4ae3-9554-085973137663"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 45 (IFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 112,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 45 (IFG) [v9.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db64761-aad6-4d3d-b67c-2a9ef4df6e47"
+                                }
+                              ],
+                              "rgb": [
+                                167,
+                                103,
+                                146
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cb32e688-43f0-4ae3-9554-085973137663"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 45 (IFG)",
+                              "arealabel": "Area-45",
+                              "status": "publicP",
+                              "labelIndex": "1",
+                              "doi": "https://doi.org/10.25493/MR1V-BJ3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dorsal precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6d2 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 82,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d2 (PreCG) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 82,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d2 (PreCG) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "b2fa41bb-67ab-4c69-bbea-5108ef1d0dc3"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                151,
+                                180
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "963c5281-67df-4d41-9b91-60b31cf150c0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d2 (PreCG)",
+                              "arealabel": "Area-6d2",
+                              "status": "publicDOI",
+                              "labelIndex": "288",
+                              "doi": "https://doi.org/10.25493/KXHS-N90",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 6d1 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 90,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "36"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d1 (PreCG) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298"
+                                }
+                              ],
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 90,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "35"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d1 (PreCG) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6a2ee2d8-120c-40de-b390-53ca87210298"
+                                }
+                              ],
+                              "rgb": [
+                                45,
+                                33,
+                                27
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "a802f3dc-b7e5-48b7-9845-832a6e6f9b1c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d1 (PreCG)",
+                              "arealabel": "Area-6d1",
+                              "status": "publicDOI",
+                              "labelIndex": "287",
+                              "doi": "https://doi.org/10.25493/4WSQ-8FM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "posterior medial superior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 70,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6ma (preSMA, mesial SFG) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "89347668-eee6-4be5-b783-8dddf422bba0"
+                                }
+                              ],
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 70,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6ma (preSMA, mesial SFG) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "89347668-eee6-4be5-b783-8dddf422bba0"
+                                }
+                              ],
+                              "rgb": [
+                                204,
+                                108,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "07b4c6a1-8a24-4f88-8f73-b2ea06e1c2f3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "arealabel": "Area-6ma",
+                              "status": "publicP",
+                              "labelIndex": "299",
+                              "doi": "https://doi.org/10.25493/WVNR-SPT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "children": [
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 68,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d3 (SFS) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b"
+                                }
+                              ],
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "266c1ada-1840-462f-8223-7ff2df457552"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 68,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6d3 (SFS) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "502b40a0-1689-4329-854e-a77dfd94d30b"
+                                }
+                              ],
+                              "rgb": [
+                                55,
+                                239,
+                                21
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "266c1ada-1840-462f-8223-7ff2df457552"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d3 (SFS)",
+                              "arealabel": "Area-6d3",
+                              "status": "publicDOI",
+                              "labelIndex": "289",
+                              "doi": "https://doi.org/10.25493/NVJ5-JJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal pole",
+                      "children": [
+                        {
+                          "name": "Area Fp1 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "status": "left hemisphere",
+                              "labelIndex": 107,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp1 (FPole) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "status": "right hemisphere",
+                              "labelIndex": 107,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp1 (FPole) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a02d7b6-51f7-4f6f-a1c3-ca04b56cc107"
+                                }
+                              ],
+                              "rgb": [
+                                226,
+                                14,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dc5343-941b-4e3e-80ed-df031c33bbc6"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp1 (FPole)",
+                              "arealabel": "Area-Fp1",
+                              "status": "publicP",
+                              "labelIndex": "212",
+                              "doi": "https://doi.org/10.25493/PTKW-R7W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fp2 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "status": "left hemisphere",
+                              "labelIndex": 101,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp2 (FPole) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "status": "right hemisphere",
+                              "labelIndex": 101,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fp2 (FPole) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8d2f06b2-d3bd-4f89-a6e3-953c90cc9661"
+                                }
+                              ],
+                              "rgb": [
+                                239,
+                                137,
+                                211
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3bf7bde1-cc06-4657-b296-380275f9d4b8"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp2 (FPole)",
+                              "arealabel": "Area-Fp2",
+                              "status": "publicP",
+                              "labelIndex": "211",
+                              "doi": "https://doi.org/10.25493/GZW1-7R3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "precentral gyrus ",
+                      "children": [
+                        {
+                          "name": "Area 4p (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 9,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4p (PreCG) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b"
+                                }
+                              ],
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 9,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4p (PreCG) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "02a0087e-3fdc-4b95-826a-0a953490103b"
+                                }
+                              ],
+                              "rgb": [
+                                116,
+                                92,
+                                124
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "82e6e826-a439-41db-84ff-4674ca3d643a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4p (PreCG)",
+                              "arealabel": "Area-4p",
+                              "status": "publicP",
+                              "labelIndex": "123",
+                              "doi": "https://doi.org/10.25493/5HSF-81J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 4a (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 100,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "95"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4a (PreCG) [v11.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f"
+                                }
+                              ],
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 100,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "96"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 4a (PreCG) [v11.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e1728c2-dd89-40d4-a0ea-fdede469684f"
+                                }
+                              ],
+                              "rgb": [
+                                118,
+                                239,
+                                183
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "175848ff-4c55-47e3-a0ae-f905a14e03cd"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4a (PreCG)",
+                              "arealabel": "Area-4a",
+                              "status": "publicP",
+                              "labelIndex": "124",
+                              "doi": "https://doi.org/10.25493/PVPP-P3Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "mesial precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 108,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "21"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6mp (SMA, mesial SFG) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9"
+                                }
+                              ],
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 108,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "20"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 6mp (SMA, mesial SFG) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1e7ee33c-a1e4-49a9-9093-54520392dff9"
+                                }
+                              ],
+                              "rgb": [
+                                75,
+                                95,
+                                87
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "def99e8e-ce8f-4a62-bd5d-739948c4b010"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "arealabel": "Area-6mp",
+                              "status": "publicP",
+                              "labelIndex": "298",
+                              "doi": "https://doi.org/10.25493/2E1T-47F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "medial orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo1 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 47,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo1 (OFC) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b"
+                                }
+                              ],
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 47,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo1 (OFC) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2153a21a-7fee-4fcd-9a91-6d23c494403b"
+                                }
+                              ],
+                              "rgb": [
+                                7,
+                                255,
+                                179
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3864cb8c-f277-4de6-9f8d-c76d71d7e9a9"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo1 (OFC)",
+                              "arealabel": "Area-Fo1",
+                              "status": "publicP",
+                              "labelIndex": "3",
+                              "doi": "https://doi.org/10.25493/H2N2-6J2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo3 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 48,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo3 (OFC) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0"
+                                }
+                              ],
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 48,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo3 (OFC) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "fca58db5-fadb-4314-a06c-75948110d7f0"
+                                }
+                              ],
+                              "rgb": [
+                                182,
+                                189,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "741f6a9e-cfd7-4173-ac7d-ee616c29555e"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo3 (OFC)",
+                              "arealabel": "Area-Fo3",
+                              "status": "publicP",
+                              "labelIndex": "5",
+                              "doi": "https://doi.org/10.25493/E1YQ-65U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo2 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 67,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo2 (OFC) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 67,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo2 (OFC) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2e8f2ce5-abf8-4881-8ea6-4eddcb188c12"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                255,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "30a04d2b-58e1-43d7-8b8f-1f0b598382d0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo2 (OFC)",
+                              "arealabel": "Area-Fo2",
+                              "status": "publicP",
+                              "labelIndex": "4",
+                              "doi": "https://doi.org/10.25493/3JB9-2V2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "frontal operculum ",
+                      "children": [
+                        {
+                          "name": "Area OP6 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 31,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP6 (Frontal Operculum) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                63,
+                                100
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af208413-1233-4512-9395-8ac2c4533875"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 31,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP6 (Frontal Operculum) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ee72c2a3-bc04-4853-b6db-cb9ecdd247b4"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                63,
+                                100
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "af208413-1233-4512-9395-8ac2c4533875"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "arealabel": "Area-OP6",
+                              "status": "publicDOI",
+                              "labelIndex": "349",
+                              "doi": "https://doi.org/10.25493/41KE-8HT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP8 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 40,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP8 (Frontal Operculum) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "43d46017-2bef-467b-b870-9866c838e4f3"
+                                }
+                              ],
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "fullId": {}
+                            },
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 40,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP8 (Frontal Operculum) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "43d46017-2bef-467b-b870-9866c838e4f3"
+                                }
+                              ],
+                              "rgb": [
+                                29,
+                                76,
+                                168
+                              ],
+                              "fullId": {}
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "arealabel": "Area-OP8",
+                              "status": "publicDOI",
+                              "labelIndex": "273",
+                              "doi": "https://doi.org/10.25493/NGF8-TA4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP5 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 43,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "90"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP5 (Frontal Operculum) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                78,
+                                253
+                              ],
+                              "fullId": {}
+                            },
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 43,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "91"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP5 (Frontal Operculum) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d9fc6c97-7a2c-4620-aa0f-7ffc9e410918"
+                                }
+                              ],
+                              "rgb": [
+                                222,
+                                78,
+                                253
+                              ],
+                              "fullId": {}
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "arealabel": "Area-OP5",
+                              "status": "publicDOI",
+                              "labelIndex": "348",
+                              "doi": "https://doi.org/10.25493/TWFH-BJZ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP9 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 117,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP9 (Frontal Operculum) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed"
+                                }
+                              ],
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "fullId": {}
+                            },
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 117,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP9 (Frontal Operculum) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2034ee9f-69f8-4633-9b81-eaf4b8f44aed"
+                                }
+                              ],
+                              "rgb": [
+                                175,
+                                123,
+                                34
+                              ],
+                              "fullId": {}
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "arealabel": "Area-OP9",
+                              "status": "publicDOI",
+                              "labelIndex": "274",
+                              "doi": "https://doi.org/10.25493/3A30-5E4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP7 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 60,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP7 (Frontal Operculum) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d"
+                                }
+                              ],
+                              "rgb": [
+                                134,
+                                116,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 60,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area OP7 (Frontal Operculum) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ed0b0aee-4260-4d4d-b84b-63a718f24f8d"
+                                }
+                              ],
+                              "rgb": [
+                                134,
+                                116,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c7fca306-e515-40bc-a61e-8014ddd45ddc"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "arealabel": "Area-OP7",
+                              "status": "publicDOI",
+                              "labelIndex": "350",
+                              "doi": "https://doi.org/10.25493/T2M3-2ST",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "lateral orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo6 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 36,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo6 (OFC) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400"
+                                }
+                              ],
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "330ae178-557c-4bd0-a932-f138c0a05345"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 36,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo6 (OFC) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "ab21e50f-c46d-45c5-b9f6-2b82d5728400"
+                                }
+                              ],
+                              "rgb": [
+                                199,
+                                156,
+                                187
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "330ae178-557c-4bd0-a932-f138c0a05345"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo6 (OFC)",
+                              "arealabel": "Area-Fo6",
+                              "status": "publicDOI",
+                              "labelIndex": "326",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo5 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 76,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "42"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo5 (OFC) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870"
+                                }
+                              ],
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 76,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "42"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo5 (OFC) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "688bee67-abc0-4a17-9800-21c5c9bf3870"
+                                }
+                              ],
+                              "rgb": [
+                                219,
+                                11,
+                                91
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3fd2e113-ec08-407b-bc88-172c9285694a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo5 (OFC)",
+                              "arealabel": "Area-Fo5",
+                              "status": "publicDOI",
+                              "labelIndex": "325",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo7 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 52,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo7 (OFC) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea"
+                                }
+                              ],
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 52,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo7 (OFC) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7d4726da-7023-4e64-8b60-9d0271766bea"
+                                }
+                              ],
+                              "rgb": [
+                                64,
+                                211,
+                                186
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "1b882148-fcdd-4dbe-b33d-659957840e9e"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo7 (OFC)",
+                              "arealabel": "Area-Fo7",
+                              "status": "publicDOI",
+                              "labelIndex": "327",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo4 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 80,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo4 (OFC) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4"
+                                }
+                              ],
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2cdee956-207a-4d4d-b051-bef80045210b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 80,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Fo4 (OFC) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d26dd88e-ae9d-41a1-a5c4-7e5b51f7e9c4"
+                                }
+                              ],
+                              "rgb": [
+                                163,
+                                204,
+                                53
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "2cdee956-207a-4d4d-b051-bef80045210b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo4 (OFC)",
+                              "arealabel": "Area-Fo4",
+                              "status": "publicDOI",
+                              "labelIndex": "324",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "insula",
+                  "children": [
+                    {
+                      "name": "granular insula",
+                      "children": [
+                        {
+                          "name": "Area Ig3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 105,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig3 (Insula) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                253,
+                                197
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 105,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig3 (Insula) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e84b2da3-2cd6-4a66-a9fd-84beab67b552"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                253,
+                                197
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "10dba769-4f6c-40f9-8ffd-e0cce71c5adb"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig3 (Insula)",
+                              "arealabel": "Area-Ig3",
+                              "status": "publicDOI",
+                              "labelIndex": "336",
+                              "doi": "https://doi.org/10.25493/2FTZ-MWQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 25,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig1 (Insula) [v14.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3"
+                                }
+                              ],
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 25,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig1 (Insula) [v14.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "30d68317-ee5b-4975-b643-4468eb8dfbe3"
+                                }
+                              ],
+                              "rgb": [
+                                18,
+                                111,
+                                40
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "46cf08af-8086-4e8a-9e9f-182ca583bdf0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig1 (Insula)",
+                              "arealabel": "Area-Ig1",
+                              "status": "publicP",
+                              "labelIndex": "115",
+                              "doi": "https://doi.org/10.25493/EKV9-29D",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 45,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig2 (Insula) [v14.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 45,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ig2 (Insula) [v14.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f06b5ac4-3dff-4f92-a9b5-9a16fd4cf147"
+                                }
+                              ],
+                              "rgb": [
+                                105,
+                                61,
+                                82
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "49092952-1eef-4b89-b8bf-1bf1f25f149a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig2 (Insula)",
+                              "arealabel": "Area-Ig2",
+                              "status": "publicP",
+                              "labelIndex": "114",
+                              "doi": "https://doi.org/10.25493/662G-E0W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Ia (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ia (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 118,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "80"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ia (Insula) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ia (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 118,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "80"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Ia (Insula) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8c98a495-a8d6-4fe8-8de1-5fd876e37d3f"
+                                }
+                              ],
+                              "rgb": [
+                                71,
+                                217,
+                                62
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "110d0d7b-cb88-48ea-9caf-863f548dbe38"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ia (Insula)",
+                              "arealabel": "Area-Ia",
+                              "status": "publicDOI",
+                              "labelIndex": "339",
+                              "doi": "https://doi.org/10.25493/WW8G-T2G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dys-agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id7 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 18,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "107"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id7 (Insula) [v7.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868"
+                                }
+                              ],
+                              "rgb": [
+                                188,
+                                250,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 18,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "106"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id7 (Insula) [v7.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2da42b86-d839-41e8-bb27-1bb7697e3868"
+                                }
+                              ],
+                              "rgb": [
+                                188,
+                                250,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3d5729f5-55c6-412a-8fc1-41a95c71b13a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id7 (Insula)",
+                              "arealabel": "Area-Id7",
+                              "status": "publicDOI",
+                              "labelIndex": "159",
+                              "doi": "https://doi.org/10.25493/88QG-JMS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dysgranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 99,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id2 (Insula) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "a260b3b4eadda85af9fd8df4100c10a9"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                126,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf9dea67-649d-4034-ae57-ec389f339277"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 99,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id2 (Insula) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "a260b3b4eadda85af9fd8df4100c10a9"
+                                }
+                              ],
+                              "rgb": [
+                                225,
+                                126,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf9dea67-649d-4034-ae57-ec389f339277"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id2 (Insula)",
+                              "arealabel": "Area-Id2",
+                              "status": "publicDOI",
+                              "labelIndex": "56",
+                              "doi": "https://doi.org10.25493/377R-T96",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 78,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id1 (Insula) [v14.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086"
+                                }
+                              ],
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c22055c1-514f-4096-906b-abf57286053b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 78,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id1 (Insula) [v14.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "456e67e7-ef36-4d1e-8b2e-0a1b40831086"
+                                }
+                              ],
+                              "rgb": [
+                                141,
+                                112,
+                                216
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "c22055c1-514f-4096-906b-abf57286053b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id1 (Insula)",
+                              "arealabel": "Area-Id1",
+                              "status": "publicP",
+                              "labelIndex": "116",
+                              "doi": "https://doi.org/10.25493/F37H-8WB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id5 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 104,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id5 (Insula) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9"
+                                }
+                              ],
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 104,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id5 (Insula) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "bfee9d73-2ea3-4b35-9e99-8862e1ed59a9"
+                                }
+                              ],
+                              "rgb": [
+                                112,
+                                6,
+                                50
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e03cd3c6-d0be-481c-b906-9b39c1d0b641"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id5 (Insula)",
+                              "arealabel": "Area-Id5",
+                              "status": "publicDOI",
+                              "labelIndex": "338",
+                              "doi": "https://doi.org/10.25493/5CK1-B1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id6 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 11,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id6 (Insula) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 11,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id6 (Insula) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a98c1711-4d2c-4351-bc63-c3f827f41eab"
+                                }
+                              ],
+                              "rgb": [
+                                138,
+                                127,
+                                119
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "31bbe92d-e5e8-4cf4-be5d-e6b12c71a107"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id6 (Insula)",
+                              "arealabel": "Area-Id6",
+                              "status": "publicDOI",
+                              "labelIndex": "340",
+                              "doi": "https://doi.org/10.25493/54HZ-KFQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id4 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 53,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id4 (Insula) [v4.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 53,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id4 (Insula) [v4.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "49a74d3a-9290-4ff9-9a5a-522c0a096d1b"
+                                }
+                              ],
+                              "rgb": [
+                                38,
+                                174,
+                                113
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "f480ed72-5ca5-4d1f-8905-cbe9bedcfaee"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id4 (Insula)",
+                              "arealabel": "Area-Id4",
+                              "status": "publicDOI",
+                              "labelIndex": "337",
+                              "doi": "https://doi.org/10.25493/K63G-89H",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "status": "left hemisphere",
+                              "labelIndex": 54,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "20"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id3 (Insula) [v8.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317"
+                                }
+                              ],
+                              "rgb": [
+                                32,
+                                32,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "status": "right hemisphere",
+                              "labelIndex": 54,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "21"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area Id3 (Insula) [v8.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85869b4f-9c3f-47f3-b911-838de6ab8317"
+                                }
+                              ],
+                              "rgb": [
+                                32,
+                                32,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3dcfcfc2-035c-4785-a820-a671f2104ac3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id3 (Insula)",
+                              "arealabel": "Area-Id3",
+                              "status": "publicDOI",
+                              "labelIndex": "57",
+                              "doi": "https://doi.org/10.25493/AE2S-KT6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "temporal lobe",
+                  "children": [
+                    {
+                      "name": "superior temporal sulcus",
+                      "children": [
+                        {
+                          "name": "Area STS2 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS2 (STS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 98,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS2 (STS) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0"
+                                }
+                              ],
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "278fc30f-2e24-4046-856b-95dfaf561635"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS2 (STS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 98,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS2 (STS) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7cef408f-0b23-46c3-8411-102cce3d86a0"
+                                }
+                              ],
+                              "rgb": [
+                                62,
+                                117,
+                                123
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "278fc30f-2e24-4046-856b-95dfaf561635"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS2 (STS)",
+                              "arealabel": "Area-STS2",
+                              "status": "publicDOI",
+                              "labelIndex": "272",
+                              "doi": "https://doi.org/10.25493/KHY9-J3Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area STS1 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS1 (STS)",
+                              "status": "left hemisphere",
+                              "labelIndex": 114,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "96"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS1 (STS) [v5.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f"
+                                }
+                              ],
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS1 (STS)",
+                              "status": "right hemisphere",
+                              "labelIndex": 114,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "95"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area STS1 (STS) [v5.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "61460dd7-7696-485e-b638-407e7b7dc99f"
+                                }
+                              ],
+                              "rgb": [
+                                205,
+                                228,
+                                4
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "68784b66-ff15-4b09-b28a-a2146c0f8907"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS1 (STS)",
+                              "arealabel": "Area-STS1",
+                              "status": "publicDOI",
+                              "labelIndex": "271",
+                              "doi": "https://doi.org/10.25493/F6DF-H8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 15,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 3 (STG) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13"
+                                }
+                              ],
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 15,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 3 (STG) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "03b1cb7b-f142-4612-bbd3-10fc7743bf13"
+                                }
+                              ],
+                              "rgb": [
+                                159,
+                                104,
+                                108
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "7e1a3291-efdc-4ca6-a3d0-6c496c34639f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 3 (STG)",
+                              "arealabel": "Area-TE-3",
+                              "status": "publicP",
+                              "labelIndex": "31",
+                              "doi": "https://doi.org/10.25493/BN5J-JT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.2 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 93,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "119"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.2 (STG) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                104,
+                                125
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 93,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "119"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.2 (STG) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v1.0.0",
+                                  "kgId": "dc50fefd7f7e645c232ea8f04e6d91f7"
+                                }
+                              ],
+                              "rgb": [
+                                58,
+                                104,
+                                125
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ecfd5e0-dc37-4303-894d-a897faa51d61"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.2 (STG)",
+                              "arealabel": "Area-TE-2.2",
+                              "status": "publicDOI",
+                              "labelIndex": "34",
+                              "doi": " https://doi.org/10.25493/RTTN-R5F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.1 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 19,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "82"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.1 (STG) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                254,
+                                44
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 19,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "81"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 2.1 (STG) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a5589ffe-5148-4006-8d8d-8bcf411f750b"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                254,
+                                44
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "3332ad65-a5e6-436f-95f0-c634fbcb075c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.1 (STG)",
+                              "arealabel": "Area-TE-2.1",
+                              "status": "publicDOI",
+                              "labelIndex": "28",
+                              "doi": "https://doi.org/10.25493/R28N-2TD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "temporal-insula",
+                      "children": [
+                        {
+                          "name": "Area TI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TI (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 13,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TI (STG) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd"
+                                }
+                              ],
+                              "rgb": [
+                                86,
+                                101,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TI (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 13,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TI (STG) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "48383281-9a83-4c6f-8166-f8bb139052dd"
+                                }
+                              ],
+                              "rgb": [
+                                86,
+                                101,
+                                22
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "80dfab1a-cbdc-4ef1-9e7a-804a4c0a7e43"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TI (STG)",
+                              "arealabel": "Area-TI",
+                              "status": "publicDOI",
+                              "labelIndex": "243",
+                              "doi": "https://doi.org/10.25493/57FA-VX6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TeI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TeI (STG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 79,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TeI (STG) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                78,
+                                92
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TeI (STG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 79,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TeI (STG) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "35f2107d-2e3c-41ae-b26a-83b101829346"
+                                }
+                              ],
+                              "rgb": [
+                                23,
+                                78,
+                                92
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0eff5159-a136-4b42-b591-f17fbc82ae8a"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TeI (STG)",
+                              "arealabel": "Area-TeI",
+                              "status": " publicDOI",
+                              "labelIndex": "242",
+                              "doi": "https://doi.org/10.25493/DTC3-EVM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "Heschl's gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 86,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.2 (HESCHL) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2"
+                                }
+                              ],
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 86,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.2 (HESCHL) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f00b4a71-4a30-4e55-9cfc-dccf4c72c8b2"
+                                }
+                              ],
+                              "rgb": [
+                                202,
+                                251,
+                                192
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "677cd48c-70fa-4bbd-9f0a-ffdc7744bc0f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "arealabel": "Area-TE-1.2",
+                              "status": "publicP",
+                              "labelIndex": "30",
+                              "doi": "https://doi.org/10.25493/R382-617",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 39,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.1 (HESCHL) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c"
+                                }
+                              ],
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e2969911-77eb-4b21-af70-216cab5285b1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 39,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.1 (HESCHL) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "85ad6ef7-228a-4543-a0b1-71ccf11bc69c"
+                                }
+                              ],
+                              "rgb": [
+                                8,
+                                113,
+                                68
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e2969911-77eb-4b21-af70-216cab5285b1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "arealabel": "Area-TE-1.1",
+                              "status": "publicP",
+                              "labelIndex": "33",
+                              "doi": "https://doi.org/10.25493/4HA3-BBE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "status": "left hemisphere",
+                              "labelIndex": 34,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.0 (HESCHL) [v6.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "13e21153-2ba8-4212-b172-8894f1012225"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "status": "right hemisphere",
+                              "labelIndex": 34,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area TE 1.0 (HESCHL) [v6.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8a105954-a724-428d-aed8-6c8d50fe4218"
+                                }
+                              ],
+                              "rgb": [
+                                252,
+                                84,
+                                222
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "13e21153-2ba8-4212-b172-8894f1012225"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "arealabel": "Area-TE-1.0",
+                              "status": "publicP",
+                              "labelIndex": "27",
+                              "doi": "https://doi.org/10.25493/MV3G-RET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fusiform gyrus",
+                      "children": [
+                        {
+                          "name": "Area FG2 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 28,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG2 (FusG) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 28,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG2 (FusG) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "526f6a7d-e8f8-4a8e-a895-a92696281eb9"
+                                }
+                              ],
+                              "rgb": [
+                                67,
+                                94,
+                                149
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "6e7a0441-4baa-4355-921b-50d23d07d50f"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG2 (FusG)",
+                              "arealabel": "Area-FG2",
+                              "status": "publicP",
+                              "labelIndex": "106",
+                              "doi": "https://doi.org/10.25493/F2JH-KVV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG3 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 42,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG3 (FusG) [v7.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "34f29154-e210-4bef-9510-73b77f727132"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 42,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG3 (FusG) [v7.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "34f29154-e210-4bef-9510-73b77f727132"
+                                }
+                              ],
+                              "rgb": [
+                                120,
+                                147,
+                                37
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "023f8ef7-c266-4c45-8bf2-4a17dc52985b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG3 (FusG)",
+                              "arealabel": "Area-FG3",
+                              "status": "publicP",
+                              "labelIndex": "239",
+                              "doi": "https://doi.org/10.25493/Z0F6-0SY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG1 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 84,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG1 (FusG) [v3.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a00577ca-5089-443d-918e-b99531efd5e9"
+                                }
+                              ],
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 84,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG1 (FusG) [v3.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "a00577ca-5089-443d-918e-b99531efd5e9"
+                                }
+                              ],
+                              "rgb": [
+                                131,
+                                183,
+                                58
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "39fb34a8-fd6d-4fba-898c-2f6167e40459"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG1 (FusG)",
+                              "arealabel": "Area-FG1",
+                              "status": "publicP",
+                              "labelIndex": "107",
+                              "doi": "https://doi.org/10.25493/5ZVQ-R8R",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG4 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "status": "left hemisphere",
+                              "labelIndex": 55,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG4 (FusG) [v7.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "status": "right hemisphere",
+                              "labelIndex": 55,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area FG4 (FusG) [v7.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "e7a2b57c-c4f0-41b9-8d80-8accd509497b"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                220,
+                                175
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "fa602743-5f6e-49d1-9734-29dffaa95ff5"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG4 (FusG)",
+                              "arealabel": "Area-FG4",
+                              "status": "publicP",
+                              "labelIndex": "238",
+                              "doi": "https://doi.org/10.25493/13RG-FYV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "overall",
+                  "children": [
+                    {
+                      "name": "overall",
+                      "children": [
+                        {
+                          "name": "Frontal-to-Occipital (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 33,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Occipital (GapMap) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3ae17b7-f994-4161-ba60-46a971610167"
+                                }
+                              ],
+                              "rgb": [
+                                104,
+                                161,
+                                93
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 33,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Occipital (GapMap) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f3ae17b7-f994-4161-ba60-46a971610167"
+                                }
+                              ],
+                              "rgb": [
+                                104,
+                                161,
+                                93
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "arealabel": "Frontal-to-Occipital",
+                              "status": "publicP",
+                              "labelIndex": "504",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Temporal-to-Parietal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 2,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Temporal-to-Parietal (GapMap) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18"
+                                }
+                              ],
+                              "rgb": [
+                                76,
+                                90,
+                                161
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 2,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Temporal-to-Parietal (GapMap) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "19838359-3e95-4334-aaa0-3c64e3a65c18"
+                                }
+                              ],
+                              "rgb": [
+                                76,
+                                90,
+                                161
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "arealabel": "Temporal-to-Parietal",
+                              "status": "publicP",
+                              "labelIndex": "503",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-I (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 71,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-I (GapMap) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7"
+                                }
+                              ],
+                              "rgb": [
+                                186,
+                                255,
+                                25
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 71,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-I (GapMap) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6b1ebd25-d1bf-477a-9f6f-d458b24bc6b7"
+                                }
+                              ],
+                              "rgb": [
+                                186,
+                                255,
+                                25
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-I (GapMap)",
+                              "arealabel": "Frontal-I",
+                              "status": "publicP",
+                              "labelIndex": "500",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-to-Temporal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 110,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Temporal (GapMap) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45"
+                                }
+                              ],
+                              "rgb": [
+                                161,
+                                24,
+                                74
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 110,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-to-Temporal (GapMap) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "6e0c6897-7ecf-451e-a9ad-d3e96bcc7b45"
+                                }
+                              ],
+                              "rgb": [
+                                161,
+                                24,
+                                74
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "arealabel": "Frontal-to-Temporal",
+                              "status": "publicP",
+                              "labelIndex": "502",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-II (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "status": "left hemisphere",
+                              "labelIndex": 27,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-II (GapMap) [v10.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                135,
+                                15
+                              ],
+                              "fullId": null
+                            },
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "status": "right hemisphere",
+                              "labelIndex": 27,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Frontal-II (GapMap) [v10.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1db74846-624c-4be3-b4cc-71c18e94b119"
+                                }
+                              ],
+                              "rgb": [
+                                255,
+                                135,
+                                15
+                              ],
+                              "fullId": null
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-II (GapMap)",
+                              "arealabel": "Frontal-II",
+                              "status": "publicP",
+                              "labelIndex": "501",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                },
+                {
+                  "name": "limbic lobe",
+                  "children": [
+                    {
+                      "name": "cingulate gyrus, frontal part",
+                      "children": [
+                        {
+                          "name": "Area p24c (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24c (pACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 57,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24c (pACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721"
+                                }
+                              ],
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24c (pACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 57,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24c (pACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "8b778e42-b3f2-41e2-8295-a6f0e1f20721"
+                                }
+                              ],
+                              "rgb": [
+                                241,
+                                164,
+                                195
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e6507a3d-f2f8-4c17-84ff-0e7297e836a0"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24c (pACC)",
+                              "arealabel": "Area-p24c",
+                              "status": "publicP",
+                              "labelIndex": "232",
+                              "doi": "https://doi.org/10.25493/QA7B-JM9",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 25 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area 25 (sACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 3,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 25 (sACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 25 (sACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 3,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 25 (sACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "74bc9736-7044-4c72-b7bb-15739ae70e1e"
+                                }
+                              ],
+                              "rgb": [
+                                170,
+                                68,
+                                220
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9010ef76-accd-4308-9951-f37b6a10f42b"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 25 (sACC)",
+                              "arealabel": "Area-25",
+                              "status": "publicP",
+                              "labelIndex": "184",
+                              "doi": "https://doi.org/10.25493/51AM-WN4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p24ab (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 63,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24ab (pACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 63,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p24ab (pACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "1acd6cd6-6941-4228-94fa-9da5ce014503"
+                                }
+                              ],
+                              "rgb": [
+                                153,
+                                195,
+                                229
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "5dbb1035-487c-4f43-b551-ccadcf058340"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24ab (pACC)",
+                              "arealabel": "Area-p24ab",
+                              "status": "publicP",
+                              "labelIndex": "231",
+                              "doi": "https://doi.org/10.25493/DHXC-2KN",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s32 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s32 (sACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 74,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "102"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s32 (sACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca"
+                                }
+                              ],
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s32 (sACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 74,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "103"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s32 (sACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "57ac8798-a260-4c9b-8f9c-3e32d1dd3aca"
+                                }
+                              ],
+                              "rgb": [
+                                193,
+                                94,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "61b44255-ae3a-4a23-b1bc-7d303a48dbd3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s32 (sACC)",
+                              "arealabel": "Area-s32",
+                              "status": "publicP",
+                              "labelIndex": "46",
+                              "doi": "https://doi.org/10.25493/XTRR-172",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 33 (ACC)",
+                          "children": [
+                            {
+                              "name": "Area 33 (ACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 96,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 33 (ACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c"
+                                }
+                              ],
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 33 (ACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 96,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area 33 (ACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2801b466-fc6e-4079-91da-1f2a5180f76c"
+                                }
+                              ],
+                              "rgb": [
+                                51,
+                                57,
+                                245
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b83a3330-b80e-42a0-b8d2-82f38784aa1d"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 33 (ACC)",
+                              "arealabel": "Area-33",
+                              "status": "publicP",
+                              "labelIndex": "39",
+                              "doi": "https://doi.org/10.25493/X9QP-C6F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p32 (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p32 (pACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 113,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p32 (pACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a326443-3ced-482f-8772-fb948b0f298f"
+                                }
+                              ],
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p32 (pACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 113,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area p32 (pACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "7a326443-3ced-482f-8772-fb948b0f298f"
+                                }
+                              ],
+                              "rgb": [
+                                87,
+                                135,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "b09aaa77-f41b-4008-b8b9-f984b0417cf3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p32 (pACC)",
+                              "arealabel": "Area-p32",
+                              "status": "publicP",
+                              "labelIndex": "47",
+                              "doi": "https://doi.org/10.25493/3JX0-7E5",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s24 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s24 (sACC)",
+                              "status": "left hemisphere",
+                              "labelIndex": 73,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s24 (sACC) [v18.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3"
+                                }
+                              ],
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s24 (sACC)",
+                              "status": "right hemisphere",
+                              "labelIndex": 73,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Area s24 (sACC) [v18.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "2092649c-7880-4d13-9537-a8f5a71dccf3"
+                                }
+                              ],
+                              "rgb": [
+                                133,
+                                34,
+                                201
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "d4ea6cc5-1e1d-4212-966f-81fed01eb648"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s24 (sACC)",
+                              "arealabel": "Area-s24",
+                              "status": "publicP",
+                              "labelIndex": "183",
+                              "doi": "https://doi.org/10.25493/HXWM-NRX",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "children": [
+                        {
+                          "name": "HC-Presubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 87,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Presubiculum (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "1c9fad3c-d235-4074-b505-74cd1c6fa3db"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "81b982fa-ad21-4791-a075-d671c0aff5dc"
+                              }
+                            },
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 87,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Presubiculum (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "1c9fad3c-d235-4074-b505-74cd1c6fa3db"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "81b982fa-ad21-4791-a075-d671c0aff5dc"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "arealabel": "HC-Presubiculum",
+                              "status": "publicP",
+                              "labelIndex": "63",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HATA (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 56,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HATA (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575"
+                                }
+                              ],
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 56,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HATA (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "4225fb8e-b9b4-456a-961e-9db90acac575"
+                                }
+                              ],
+                              "rgb": [
+                                137,
+                                12,
+                                73
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "9ec4a423-70fa-43cd-90b3-fbc26a3cbc6c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HATA (Hippocampus)",
+                              "arealabel": "HATA",
+                              "status": "publicP",
+                              "labelIndex": "68",
+                              "doi": "https://doi.org/10.25493/M1XP-VSQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Entorhinal Cortex",
+                          "children": [
+                            {
+                              "name": "Entorhinal Cortex",
+                              "status": "left hemisphere",
+                              "labelIndex": 64,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Entorhinal Cortex [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7"
+                                }
+                              ],
+                              "rgb": [
+                                234,
+                                239,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Entorhinal Cortex",
+                              "status": "right hemisphere",
+                              "labelIndex": 64,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Entorhinal Cortex [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "f251d71c-32ac-489d-b96d-fe5e1297fcb7"
+                                }
+                              ],
+                              "rgb": [
+                                234,
+                                239,
+                                14
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "030827d4-e0d1-4406-b71f-3f58dc2f9cca"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Entorhinal Cortex",
+                              "arealabel": "Entorhinal-Cortex",
+                              "status": "publicP",
+                              "labelIndex": "60",
+                              "doi": "https://doi.org/10.25493/KNXY-B1Z",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA3 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 119,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "91"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA3 (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07"
+                                }
+                              ],
+                              "rgb": [
+                                39,
+                                0,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "73d8e689-9485-4796-b2b2-47181fc45323"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 119,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "90"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA3 (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "72f4d9d3-6a14-4b68-8924-bcc01a977f07"
+                                }
+                              ],
+                              "rgb": [
+                                39,
+                                0,
+                                250
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "73d8e689-9485-4796-b2b2-47181fc45323"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA3 (Hippocampus)",
+                              "arealabel": "CA3",
+                              "status": "publicP",
+                              "labelIndex": "59",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Transsubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 66,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Transsubiculum (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "b5aed403-291b-4dfd-8a67-b4419b644fdc"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "12bd1841-e54c-4afa-82d0-8c2f650bf653"
+                              }
+                            },
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 66,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Transsubiculum (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "b5aed403-291b-4dfd-8a67-b4419b644fdc"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "12bd1841-e54c-4afa-82d0-8c2f650bf653"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "arealabel": "HC-Transsubiculum",
+                              "status": "publicP",
+                              "labelIndex": "305",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Subiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 10,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Subiculum (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "018b51f0-c2e1-410b-b82b-9c14ac7d47b4"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "a5ac430c-2622-4f62-84ce-ff3fbda9c50d"
+                              }
+                            },
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 10,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Subiculum (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "018b51f0-c2e1-410b-b82b-9c14ac7d47b4"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "a5ac430c-2622-4f62-84ce-ff3fbda9c50d"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "arealabel": "HC-Subiculum",
+                              "status": "publicP",
+                              "labelIndex": "67",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Prosubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 6,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Prosubiculum (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "784eb7bd-1368-4248-8f47-ca667694c463"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "221592ff-41c4-4c2f-b37c-468b7a22dc1b"
+                              }
+                            },
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 6,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Prosubiculum (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "784eb7bd-1368-4248-8f47-ca667694c463"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "221592ff-41c4-4c2f-b37c-468b7a22dc1b"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "arealabel": "HC-Prosubiculum",
+                              "status": "publicP",
+                              "labelIndex": "64",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Parasubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 8,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Parasubiculum (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "4938b81c-e040-4ceb-a751-41b7384058c7"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "ac7bc35a-a0a5-4692-afe6-dbf25a087055"
+                              }
+                            },
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 8,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "HC-Parasubiculum (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "julich/tmp/dataset/v0.0.1",
+                                  "kgId": "4938b81c-e040-4ceb-a751-41b7384058c7"
+                                }
+                              ],
+                              "rgb": null,
+                              "fullId": {
+                                "kgSchema": "julich/tmp/parellationregion/v0.0.1",
+                                "kgId": "ac7bc35a-a0a5-4692-afe6-dbf25a087055"
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "arealabel": "HC-Parasubiculum",
+                              "status": "publicP",
+                              "labelIndex": "62",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "DG (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "DG (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 91,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "DG (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                149,
+                                8
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d"
+                                }
+                              }
+                            },
+                            {
+                              "name": "DG (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 91,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "DG (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "677c84c3-56b2-4671-bc63-15d3dda730a2"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                149,
+                                8
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "0bea7e03-bfb2-4907-9d45-db9071ce627d"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "DG (Hippocampus)",
+                              "arealabel": "DG",
+                              "status": "publicP",
+                              "labelIndex": "61",
+                              "doi": "https://doi.org/10.25493/M8JP-XQT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA2 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 23,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA2 (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "159b16ee-2451-44d6-81cf-871d04755da4"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                250,
+                                98
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 23,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA2 (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "159b16ee-2451-44d6-81cf-871d04755da4"
+                                }
+                              ],
+                              "rgb": [
+                                0,
+                                250,
+                                98
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "cf4b3fad-2d45-458b-8bc7-1095983ed1dd"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA2 (Hippocampus)",
+                              "arealabel": "CA2",
+                              "status": "publicP",
+                              "labelIndex": "58",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA1 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "status": "left hemisphere",
+                              "labelIndex": 61,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "57"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA1 (Hippocampus) [v13.0, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                89,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "status": "right hemisphere",
+                              "labelIndex": 61,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "56"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "CA1 (Hippocampus) [v13.0, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "effec48c-edf6-4be4-9e0e-75c57480d53c"
+                                }
+                              ],
+                              "rgb": [
+                                250,
+                                89,
+                                0
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "bfc0beb7-310c-4c57-b810-2adc464bd02c"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA1 (Hippocampus)",
+                              "arealabel": "CA1",
+                              "status": "publicP",
+                              "labelIndex": "66",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        },
+        {
+          "name": "metencephalon",
+          "children": [
+            {
+              "name": "cerebellum",
+              "children": [
+                {
+                  "name": "cerebellar nuclei",
+                  "children": [
+                    {
+                      "name": "globose nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "dentate nucleus",
+                      "children": [
+                        {
+                          "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 111,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "58095aef-da69-43d4-887c-009c095cecce"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 111,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Dorsal Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "870cdd4a-fdb4-4d70-9c3d-d459a122c845"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "58095aef-da69-43d4-887c-009c095cecce"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Dorsal-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "240",
+                              "doi": "https://doi.org/10.25493/M5QG-SHH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Ventral Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 38,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 38,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Ventral Dentate Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "d3e0ae99-49f4-4bb1-a394-c9c12016ed2f"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "57282342-5a75-4e07-bcdc-2d368c517b71"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Ventral-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "241",
+                              "doi": "https://doi.org/10.25493/FQE5-5QR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "fastigial nucleus",
+                      "children": [
+                        {
+                          "name": "Fastigial Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 89,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "103"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 89,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "102"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Fastigial Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "dec5c207-c0d9-4f25-a333-1db039c570cb"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "e8abfe3d-8b64-45c2-8853-314d82873273"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "arealabel": "Fastigial-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "219",
+                              "doi": "https://doi.org/10.25493/3YJ9-S6G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    },
+                    {
+                      "name": "emboliform nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "left hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, left hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "status": "right hemisphere",
+                              "labelIndex": 30,
+                              "ngId": "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              },
+                              "originDatasets": [
+                                {
+                                  "filename": "Interposed Nucleus (Cerebellum) [v6.2, Colin 27, right hemisphere]",
+                                  "kgSchema": "minds/core/dataset/v1.0.0",
+                                  "kgId": "658a7f71-1b94-4f4a-8f15-726043bbb52a"
+                                }
+                              ],
+                              "rgb": [
+                                200,
+                                200,
+                                200
+                              ],
+                              "fullId": {
+                                "kg": {
+                                  "kgSchema": "minds/core/parcellationregion/v1.0.0",
+                                  "kgId": "85e7bb13-4b73-4f6f-8222-3adb7b800788"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            }
+          ]
+        }
+      ],
+      "_": {
+        "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201204_JulichBrainV3_0_hemisphereSplit_metadata/src/eebf8ef90078fb722456eb5e77eb000ae09db776/output/nehubaUI/julich-brain-v3.0-colin.json"
+      }
+    },
+    {
+      "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+      "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579-25",
+      "name": "Cytoarchitectonic Maps - v2.5",
+      "auxillaryMeshIndices": [
+        65535
+      ],
+      "hasAdditionalViewMode": [],
+      "originDatasets": [
+        {
+          "kgSchema": "minds/core/dataset/v1.0.0",
+          "kgId": "5249afa7-5e04-4ffd-8039-c3a9231f717c"
+        }
+      ],
+      "properties": {
+        "description": "This dataset contains the whole-brain parcellation of the JuBrain Cytoarchitectonic Atlas (Amunts and Zilles, 2015) in the MNI Colin 27 as well as the MNI ICBM 152 2009c nonlinear asymmetric reference space. The parcellation is derived from the individual probability maps (PMs) of the cytoarchitectonic regions released in the JuBrain Atlas, that are further combined into a Maximum Probability Map (MPM). The MPM is calculated by considering for each voxel the probability of all cytoarchitectonic areas released in the atlas, and determining the most probable assignment (Eickhoff 2005). Note that methodological improvements and integration of new brain structures may lead to small deviations in earlier released datasets.",
+        "publications": [
+          {
+            "doi": "https://doi.org/10.1038/nrn2776",
+            "citation": "Zilles K, Amunts K (2010) Centenary of Brodmann’s map – conception and fate. Nature Reviews Neuroscience 11(2): 139-145 "
+          },
+          {
+            "doi": "https://doi.org/10.1016/j.neuroimage.2007.02.037",
+            "citation": "Amunts K, Schleicher A, Zilles K (2007) Cytoarchitecture of the cerebral cortex – more than localization. Neuroimage 37: 1061-1065"
+          },
+          {
+            "doi": "http://dx.doi.org/10.1016/B978-012693019-1/50023-X",
+            "citation": "Zilles K, Schleicher A, Palomero-Gallagher N, Amunts K (2002) Quantitative analysis of cyto- and receptor architecture of the human brain. In: /Brain Mapping: The Methods/, J. C. Mazziotta and A. Toga (eds.), USA: Elsevier, 2002, p. 573-602."
+          }
+        ]
+      },
+      "regions": [
+        {
+          "name": "telencephalon",
+          "children": [
+            {
+              "name": "cerebral nuclei",
+              "children": [
+                {
+                  "name": "basal forebrain",
+                  "children": [
+                    {
+                      "name": "magnocellular group within septum",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "magnocellular group within septum",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "sublenticular part of basal forebrain",
+                      "children": [
+                        {
+                          "name": "Ch 4 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "labelIndex": 13,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "labelIndex": 13,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 4 (Basal Forebrain)",
+                                  "gray": "13"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 4 (Basal Forebrain)",
+                              "arealabel": "Ch-4",
+                              "status": "publicP",
+                              "labelIndex": "264",
+                              "doi": "https://doi.org/10.25493/VZJ5-8WJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "sublenticular part of basal forebrain",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "magnocellular group within horizontal limb of diagnoal band",
+                      "children": [
+                        {
+                          "name": "Ch 123 (Basal Forebrain)",
+                          "children": [
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "labelIndex": 79,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ch 123 (Basal Forebrain)",
+                                  "gray": "79"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ch 123 (Basal Forebrain)",
+                              "arealabel": "Ch-123",
+                              "status": "publicP",
+                              "labelIndex": "286",
+                              "doi": "https://doi.org/10.25493/7SEP-P2V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "magnocellular group within horizontal limb of diagnoal band",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "basal forebrain",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "amygdala",
+                  "children": [
+                    {
+                      "name": "laterobasal group",
+                      "children": [
+                        {
+                          "name": "LB (Amygdala)",
+                          "children": [
+                            {
+                              "name": "LB (Amygdala)",
+                              "labelIndex": 94,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              }
+                            },
+                            {
+                              "name": "LB (Amygdala)",
+                              "labelIndex": 94,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "LB (Amygdala)",
+                                  "gray": "94"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "LB (Amygdala)",
+                              "arealabel": "LB",
+                              "status": "publicP",
+                              "labelIndex": "187",
+                              "doi": "https://doi.org/10.25493/C3X0-NV3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "laterobasal group",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "superficial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "SF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "SF (Amygdala)",
+                              "labelIndex": 110,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              }
+                            },
+                            {
+                              "name": "SF (Amygdala)",
+                              "labelIndex": 110,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "SF (Amygdala)",
+                                  "gray": "110"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "SF (Amygdala)",
+                              "arealabel": "SF",
+                              "status": "publicP",
+                              "labelIndex": "185",
+                              "doi": "https://doi.org/10.25493/WD31-SEA",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superficial group",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "fiber masses",
+                      "children": [
+                        {
+                          "name": "VTM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "VTM (Amygdala)",
+                              "labelIndex": 83,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              }
+                            },
+                            {
+                              "name": "VTM (Amygdala)",
+                              "labelIndex": 83,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "VTM (Amygdala)",
+                                  "gray": "83"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "VTM (Amygdala)",
+                              "arealabel": "VTM",
+                              "status": "publicP",
+                              "labelIndex": "228",
+                              "doi": "https://doi.org/10.25493/99HN-XRE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "IF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "IF (Amygdala)",
+                              "labelIndex": 61,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              }
+                            },
+                            {
+                              "name": "IF (Amygdala)",
+                              "labelIndex": 61,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "IF (Amygdala)",
+                                  "gray": "61"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "IF (Amygdala)",
+                              "arealabel": "IF",
+                              "status": "publicP",
+                              "labelIndex": "237",
+                              "doi": "https://doi.org/10.25493/GWPR-G6K",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "MF (Amygdala)",
+                          "children": [
+                            {
+                              "name": "MF (Amygdala)",
+                              "labelIndex": 104,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              }
+                            },
+                            {
+                              "name": "MF (Amygdala)",
+                              "labelIndex": 104,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "MF (Amygdala)",
+                                  "gray": "104"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "MF (Amygdala)",
+                              "arealabel": "MF",
+                              "status": "publicP",
+                              "labelIndex": "235",
+                              "doi": "https://doi.org/10.25493/9375-55V",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "fiber masses",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "centromedial group",
+                      "children": [
+                        {
+                          "name": "CM (Amygdala)",
+                          "children": [
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CM (Amygdala)",
+                              "labelIndex": 44,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CM (Amygdala)",
+                                  "gray": "44"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CM (Amygdala)",
+                              "arealabel": "CM",
+                              "status": "publicP",
+                              "labelIndex": "290",
+                              "doi": "https://doi.org/10.25493/36FR-C95",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "centromedial group",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "amygdala",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                }
+              ],
+              "_": {
+                "julichbrain-ontology_25.json": {
+                  "name": "cerebral nuclei",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null
+                }
+              }
+            },
+            {
+              "name": "cerebral cortex",
+              "children": [
+                {
+                  "name": "parietal lobe",
+                  "children": [
+                    {
+                      "name": "superior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area 5L (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5L (SPL)",
+                              "labelIndex": 98,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "98"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5L (SPL)",
+                              "labelIndex": 97,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5L (SPL)",
+                                  "gray": "97"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5L (SPL)",
+                              "arealabel": "Area-5L",
+                              "status": "publicP",
+                              "labelIndex": "130",
+                              "doi": "https://doi.org/10.25493/C1FQ-2F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7M (SPL)",
+                              "labelIndex": 89,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7M (SPL)",
+                              "labelIndex": 89,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7M (SPL)",
+                                  "gray": "89"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7M (SPL)",
+                              "arealabel": "Area-7M",
+                              "status": "publicP",
+                              "labelIndex": "135",
+                              "doi": "https://doi.org/10.25493/F25F-EKW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7PC (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "labelIndex": 121,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7PC (SPL)",
+                              "labelIndex": 121,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7PC (SPL)",
+                                  "gray": "121"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7PC (SPL)",
+                              "arealabel": "Area-7PC",
+                              "status": "publicP",
+                              "labelIndex": "132",
+                              "doi": "https://doi.org/10.25493/Z45N-1T",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5M (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5M (SPL)",
+                              "labelIndex": 97,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "97"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5M (SPL)",
+                              "labelIndex": 98,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5M (SPL)",
+                                  "gray": "98"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5M (SPL)",
+                              "arealabel": "Area-5M",
+                              "status": "publicP",
+                              "labelIndex": "131",
+                              "doi": "https://doi.org/10.25493/Y12F-YMU",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7P (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7P (SPL)",
+                              "labelIndex": 35,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "35"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7P (SPL)",
+                              "labelIndex": 36,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7P (SPL)",
+                                  "gray": "36"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7P (SPL)",
+                              "arealabel": "Area-7P",
+                              "status": "publicP",
+                              "labelIndex": "208",
+                              "doi": "https://doi.org/10.25493/C3HS-8R7",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 5Ci (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "labelIndex": 73,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 5Ci (SPL)",
+                              "labelIndex": 73,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 5Ci (SPL)",
+                                  "gray": "73"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 5Ci (SPL)",
+                              "arealabel": "Area-5Ci",
+                              "status": "publicP",
+                              "labelIndex": "136",
+                              "doi": "https://doi.org/10.25493/SQVP-GK1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 7A (SPL)",
+                          "children": [
+                            {
+                              "name": "Area 7A (SPL)",
+                              "labelIndex": 85,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 7A (SPL)",
+                              "labelIndex": 85,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 7A (SPL)",
+                                  "gray": "85"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 7A (SPL)",
+                              "arealabel": "Area-7A",
+                              "status": "publicP",
+                              "labelIndex": "134",
+                              "doi": "https://doi.org/10.25493/7HX2-AJH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior parietal lobule",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "parietal operculum",
+                      "children": [
+                        {
+                          "name": "Area OP3 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "labelIndex": 84,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP3 (POperc)",
+                              "labelIndex": 84,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP3 (POperc)",
+                                  "gray": "84"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP3 (POperc)",
+                              "arealabel": "Area-OP3",
+                              "status": "publicP",
+                              "labelIndex": "75",
+                              "doi": "https://doi.org/10.25493/1Z8F-PX4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP4 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "labelIndex": 11,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP4 (POperc)",
+                              "labelIndex": 11,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP4 (POperc)",
+                                  "gray": "11"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP4 (POperc)",
+                              "arealabel": "Area-OP4",
+                              "status": "publicP",
+                              "labelIndex": "72",
+                              "doi": "https://doi.org/10.25493/BVT0-H3U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP2 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "labelIndex": 17,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP2 (POperc)",
+                              "labelIndex": 17,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP2 (POperc)",
+                                  "gray": "17"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP2 (POperc)",
+                              "arealabel": "Area-OP2",
+                              "status": "publicP",
+                              "labelIndex": "74",
+                              "doi": "https://doi.org/10.25493/5KBV-36J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP1 (POperc)",
+                          "children": [
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "labelIndex": 56,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "56"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP1 (POperc)",
+                              "labelIndex": 57,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP1 (POperc)",
+                                  "gray": "57"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP1 (POperc)",
+                              "arealabel": "Area-OP1",
+                              "status": "publicP",
+                              "labelIndex": "73",
+                              "doi": "https://doi.org/10.25493/SH37-979",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "parietal operculum",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "postcentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 3b (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "labelIndex": 2,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3b (PostCG)",
+                              "labelIndex": 2,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3b (PostCG)",
+                                  "gray": "2"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3b (PostCG)",
+                              "arealabel": "Area-3b",
+                              "status": "publicP",
+                              "labelIndex": "127",
+                              "doi": "https://doi.org/10.25493/2JK3-QXR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 1 (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "labelIndex": 12,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 1 (PostCG)",
+                              "labelIndex": 12,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 1 (PostCG)",
+                                  "gray": "12"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 1 (PostCG)",
+                              "arealabel": "Area-1",
+                              "status": "publicP",
+                              "labelIndex": "125",
+                              "doi": "https://doi.org/10.25493/THB5-B64",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 2 (PostCS)",
+                          "children": [
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "labelIndex": 78,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 2 (PostCS)",
+                              "labelIndex": 78,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 2 (PostCS)",
+                                  "gray": "78"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 2 (PostCS)",
+                              "arealabel": "Area-2",
+                              "status": "publicP",
+                              "labelIndex": "252",
+                              "doi": "https://doi.org/10.25493/QA8F-DD2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 3a (PostCG)",
+                          "children": [
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "labelIndex": 105,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 3a (PostCG)",
+                              "labelIndex": 105,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 3a (PostCG)",
+                                  "gray": "105"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 3a (PostCG)",
+                              "arealabel": "Area-3a",
+                              "status": "publicP",
+                              "labelIndex": "126",
+                              "doi": "https://doi.org/10.25493/C5QQ-EFB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "postcentral gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "inferior parietal lobule",
+                      "children": [
+                        {
+                          "name": "Area PF (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PF (IPL)",
+                              "labelIndex": 5,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "5"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PF (IPL)",
+                              "labelIndex": 4,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PF (IPL)",
+                                  "gray": "4"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PF (IPL)",
+                              "arealabel": "Area-PF",
+                              "status": "publicP",
+                              "labelIndex": "206",
+                              "doi": "https://doi.org/10.25493/F1TJ-54W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFcm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "labelIndex": 32,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFcm (IPL)",
+                              "labelIndex": 32,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFcm (IPL)",
+                                  "gray": "32"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFcm (IPL)",
+                              "arealabel": "Area-PFcm",
+                              "status": "publicP",
+                              "labelIndex": "113",
+                              "doi": "https://doi.org/10.25493/8DP8-8HE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGa (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGa (IPL)",
+                              "labelIndex": 76,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGa (IPL)",
+                              "labelIndex": 76,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGa (IPL)",
+                                  "gray": "76"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGa (IPL)",
+                              "arealabel": "Area-PGa",
+                              "status": "publicP",
+                              "labelIndex": "110",
+                              "doi": "https://doi.org/10.25493/V5HY-XTS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFt (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFt (IPL)",
+                              "labelIndex": 27,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFt (IPL)",
+                              "labelIndex": 27,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFt (IPL)",
+                                  "gray": "27"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFt (IPL)",
+                              "arealabel": "Area-PFt",
+                              "status": "publicP",
+                              "labelIndex": "109",
+                              "doi": "https://doi.org/10.25493/JGM9-ZET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFm (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFm (IPL)",
+                              "labelIndex": 92,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFm (IPL)",
+                              "labelIndex": 92,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFm (IPL)",
+                                  "gray": "92"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFm (IPL)",
+                              "arealabel": "Area-PFm",
+                              "status": "publicP",
+                              "labelIndex": "112",
+                              "doi": "https://doi.org/10.25493/TB94-HRK",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PGp (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PGp (IPL)",
+                              "labelIndex": 23,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PGp (IPL)",
+                              "labelIndex": 23,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PGp (IPL)",
+                                  "gray": "23"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PGp (IPL)",
+                              "arealabel": "Area-PGp",
+                              "status": "publicP",
+                              "labelIndex": "108",
+                              "doi": "https://doi.org/10.25493/FPFJ-ZCD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area PFop (IPL)",
+                          "children": [
+                            {
+                              "name": "Area PFop (IPL)",
+                              "labelIndex": 114,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "114"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area PFop (IPL)",
+                              "labelIndex": 115,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area PFop (IPL)",
+                                  "gray": "115"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area PFop (IPL)",
+                              "arealabel": "Area-PFop",
+                              "status": "publicP",
+                              "labelIndex": "111",
+                              "doi": "https://doi.org/10.25493/M2PM-92Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "inferior parietal lobule",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "parieto-occipital sulcus",
+                      "children": [
+                        {
+                          "name": "Area hPO1 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "labelIndex": 15,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hPO1 (POS)",
+                              "labelIndex": 15,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hPO1 (POS)",
+                                  "gray": "15"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hPO1 (POS)",
+                              "arealabel": "Area-hPO1",
+                              "status": "publicP",
+                              "labelIndex": "297",
+                              "doi": "https://doi.org/10.25493/W50A-FAP",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "parieto-occipital sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "intraparietal sulcus",
+                      "children": [
+                        {
+                          "name": "Area hIP1 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "labelIndex": 77,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP1 (IPS)",
+                              "labelIndex": 77,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP1 (IPS)",
+                                  "gray": "77"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP1 (IPS)",
+                              "arealabel": "Area-hIP1",
+                              "status": "publicP",
+                              "labelIndex": "128",
+                              "doi": "https://doi.org/10.25493/92FE-7S6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP7 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "labelIndex": 120,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "120"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP7 (IPS)",
+                              "labelIndex": 120,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP7 (IPS)",
+                                  "gray": "120"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP7 (IPS)",
+                              "arealabel": "Area-hIP7",
+                              "status": "publicP",
+                              "labelIndex": "296",
+                              "doi": "https://doi.org/10.25493/WRCY-8Z1",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP3 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "labelIndex": 43,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "43"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP3 (IPS)",
+                              "labelIndex": 43,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP3 (IPS)",
+                                  "gray": "43"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP3 (IPS)",
+                              "arealabel": "Area-hIP3",
+                              "status": "publicP",
+                              "labelIndex": "133",
+                              "doi": "https://doi.org/10.25493/P8X0-V1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP2 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "labelIndex": 68,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP2 (IPS)",
+                              "labelIndex": 68,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP2 (IPS)",
+                                  "gray": "68"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP2 (IPS)",
+                              "arealabel": "Area-hIP2",
+                              "status": "publicP",
+                              "labelIndex": "129",
+                              "doi": "https://doi.org/10.25493/EJTM-NDY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP4 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "labelIndex": 38,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP4 (IPS)",
+                              "labelIndex": 38,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP4 (IPS)",
+                                  "gray": "38"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP4 (IPS)",
+                              "arealabel": "Area-hIP4",
+                              "status": "publicP",
+                              "labelIndex": "294",
+                              "doi": "https://doi.org/10.25493/TSEN-QSY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP5 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "labelIndex": 34,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP5 (IPS)",
+                              "labelIndex": 34,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP5 (IPS)",
+                                  "gray": "34"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP5 (IPS)",
+                              "arealabel": "Area-hIP5",
+                              "status": "publicP",
+                              "labelIndex": "295",
+                              "doi": "https://doi.org/10.25493/RNSM-Y4Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP6 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "labelIndex": 41,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP6 (IPS)",
+                              "labelIndex": 41,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP6 (IPS)",
+                                  "gray": "41"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP6 (IPS)",
+                              "arealabel": "Area-hIP6",
+                              "status": "publicP",
+                              "labelIndex": "292",
+                              "doi": "https://doi.org/10.25493/AFQR-50Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hIP8 (IPS)",
+                          "children": [
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "labelIndex": 60,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hIP8 (IPS)",
+                              "labelIndex": 60,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hIP8 (IPS)",
+                                  "gray": "60"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hIP8 (IPS)",
+                              "arealabel": "Area-hIP8",
+                              "status": "publicP",
+                              "labelIndex": "293",
+                              "doi": "https://doi.org/10.25493/YYT8-FT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "intraparietal sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "parietal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "occiptal lobe",
+                  "children": [
+                    {
+                      "name": "dorsal occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc6 (POS)",
+                          "children": [
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "labelIndex": 49,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc6 (POS)",
+                              "labelIndex": 49,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc6 (POS)",
+                                  "gray": "49"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc6 (POS)",
+                              "arealabel": "Area-hOc6",
+                              "status": "publicP",
+                              "labelIndex": "291",
+                              "doi": "https://doi.org/10.25493/4101-1ZG",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "labelIndex": 9,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4d (Cuneus)",
+                              "labelIndex": 9,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4d (Cuneus)",
+                                  "gray": "9"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4d (Cuneus)",
+                              "arealabel": "Area-hOc4d",
+                              "status": "publicP",
+                              "labelIndex": "119",
+                              "doi": "https://doi.org/10.25493/VSK5-DET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc3d (Cuneus)",
+                          "children": [
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "labelIndex": 81,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "81"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3d (Cuneus)",
+                              "labelIndex": 82,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3d (Cuneus)",
+                                  "gray": "82"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3d (Cuneus)",
+                              "arealabel": "Area-hOc3d",
+                              "status": "publicP",
+                              "labelIndex": "120",
+                              "doi": "https://doi.org/10.25493/F9X3-JVJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dorsal occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "ventral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc3v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "labelIndex": 30,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc3v (LingG)",
+                              "labelIndex": 30,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc3v (LingG)",
+                                  "gray": "30"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc3v (LingG)",
+                              "arealabel": "Area-hOc3v",
+                              "status": "publicP",
+                              "labelIndex": "10",
+                              "doi": "https://doi.org/10.25493/E5E8-1VV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4v (LingG)",
+                          "children": [
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "labelIndex": 115,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "115"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4v (LingG)",
+                              "labelIndex": 114,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4v (LingG)",
+                                  "gray": "114"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4v (LingG)",
+                              "arealabel": "Area-hOc4v",
+                              "status": "publicP",
+                              "labelIndex": "9",
+                              "doi": "https://doi.org/10.25493/AASR-M8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "ventral occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc2 (V2, 18)",
+                          "children": [
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "labelIndex": 6,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc2 (V2, 18)",
+                              "labelIndex": 6,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc2 (V2, 18)",
+                                  "gray": "6"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc2 (V2, 18)",
+                              "arealabel": "Area-hOc2",
+                              "status": "publicP",
+                              "labelIndex": "7",
+                              "doi": "https://doi.org/10.25493/QG9C-THD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc1 (V1, 17, CalcS)",
+                          "children": [
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "labelIndex": 117,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "labelIndex": 117,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc1 (V1, 17, CalcS)",
+                                  "gray": "117"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc1 (V1, 17, CalcS)",
+                              "arealabel": "Area-hOc1",
+                              "status": "publicP",
+                              "labelIndex": "8",
+                              "doi": "https://doi.org/10.25493/MXJ6-6DH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "lateral occipital cortex",
+                      "children": [
+                        {
+                          "name": "Area hOc4lp (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "labelIndex": 122,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4lp (LOC)",
+                              "labelIndex": 122,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4lp (LOC)",
+                                  "gray": "122"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4lp (LOC)",
+                              "arealabel": "Area-hOc4lp",
+                              "status": "publicP",
+                              "labelIndex": "117",
+                              "doi": "https://doi.org/10.25493/4B87-Q8X",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc5 (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "labelIndex": 106,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "106"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc5 (LOC)",
+                              "labelIndex": 107,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc5 (LOC)",
+                                  "gray": "107"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc5 (LOC)",
+                              "arealabel": "Area-hOc5",
+                              "status": "publicP",
+                              "labelIndex": "6",
+                              "doi": "https://doi.org/10.25493/2WSH-MCT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area hOc4la (LOC)",
+                          "children": [
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "labelIndex": 4,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "4"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area hOc4la (LOC)",
+                              "labelIndex": 5,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area hOc4la (LOC)",
+                                  "gray": "5"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area hOc4la (LOC)",
+                              "arealabel": "Area-hOc4la",
+                              "status": "publicP",
+                              "labelIndex": "118",
+                              "doi": "https://doi.org/10.25493/Z9JX-WKB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "lateral occipital cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "occiptal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "frontal lobe",
+                  "children": [
+                    {
+                      "name": "inferior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 44 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 44 (IFG)",
+                              "labelIndex": 69,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 44 (IFG)",
+                              "labelIndex": 69,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 44 (IFG)",
+                                  "gray": "69"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 44 (IFG)",
+                              "arealabel": "Area-44",
+                              "status": "publicP",
+                              "labelIndex": "2",
+                              "doi": "https://doi.org/10.25493/F9P8-ZVW",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 45 (IFG)",
+                          "children": [
+                            {
+                              "name": "Area 45 (IFG)",
+                              "labelIndex": 71,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 45 (IFG)",
+                              "labelIndex": 71,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 45 (IFG)",
+                                  "gray": "71"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 45 (IFG)",
+                              "arealabel": "Area-45",
+                              "status": "publicP",
+                              "labelIndex": "1",
+                              "doi": "https://doi.org/10.25493/MR1V-BJ3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "inferior frontal gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dorsal precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6d2 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "labelIndex": 7,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d2 (PreCG)",
+                              "labelIndex": 7,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d2 (PreCG)",
+                                  "gray": "7"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d2 (PreCG)",
+                              "arealabel": "Area-6d2",
+                              "status": "publicDOI",
+                              "labelIndex": "288",
+                              "doi": "https://doi.org/10.25493/KXHS-N90",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 6d1 (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "labelIndex": 36,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "36"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d1 (PreCG)",
+                              "labelIndex": 35,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d1 (PreCG)",
+                                  "gray": "35"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d1 (PreCG)",
+                              "arealabel": "Area-6d1",
+                              "status": "publicDOI",
+                              "labelIndex": "287",
+                              "doi": "https://doi.org/10.25493/4WSQ-8FM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dorsal precentral gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "posterior medial superior frontal gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6ma (preSMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "labelIndex": 25,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "labelIndex": 25,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6ma (preSMA, mesial SFG)",
+                                  "gray": "25"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6ma (preSMA, mesial SFG)",
+                              "arealabel": "Area-6ma",
+                              "status": "publicP",
+                              "labelIndex": "299",
+                              "doi": "https://doi.org/10.25493/WVNR-SPT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "posterior medial superior frontal gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "superior frontal sulcus",
+                      "children": [
+                        {
+                          "name": "Area 6d3 (SFS)",
+                          "children": [
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "labelIndex": 66,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6d3 (SFS)",
+                              "labelIndex": 66,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6d3 (SFS)",
+                                  "gray": "66"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6d3 (SFS)",
+                              "arealabel": "Area-6d3",
+                              "status": "publicDOI",
+                              "labelIndex": "289",
+                              "doi": "https://doi.org/10.25493/NVJ5-JJ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior frontal sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "frontal pole",
+                      "children": [
+                        {
+                          "name": "Area Fp1 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "labelIndex": 101,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp1 (FPole)",
+                              "labelIndex": 101,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp1 (FPole)",
+                                  "gray": "101"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp1 (FPole)",
+                              "arealabel": "Area-Fp1",
+                              "status": "publicP",
+                              "labelIndex": "212",
+                              "doi": "https://doi.org/10.25493/PTKW-R7W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fp2 (FPole)",
+                          "children": [
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "labelIndex": 52,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fp2 (FPole)",
+                              "labelIndex": 52,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fp2 (FPole)",
+                                  "gray": "52"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fp2 (FPole)",
+                              "arealabel": "Area-Fp2",
+                              "status": "publicP",
+                              "labelIndex": "211",
+                              "doi": "https://doi.org/10.25493/GZW1-7R3",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "frontal pole",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "precentral gyrus ",
+                      "children": [
+                        {
+                          "name": "Area 4p (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "labelIndex": 46,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4p (PreCG)",
+                              "labelIndex": 46,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4p (PreCG)",
+                                  "gray": "46"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4p (PreCG)",
+                              "arealabel": "Area-4p",
+                              "status": "publicP",
+                              "labelIndex": "123",
+                              "doi": "https://doi.org/10.25493/5HSF-81J",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 4a (PreCG)",
+                          "children": [
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "labelIndex": 95,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "95"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 4a (PreCG)",
+                              "labelIndex": 96,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 4a (PreCG)",
+                                  "gray": "96"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 4a (PreCG)",
+                              "arealabel": "Area-4a",
+                              "status": "publicP",
+                              "labelIndex": "124",
+                              "doi": "https://doi.org/10.25493/PVPP-P3Q",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "precentral gyrus ",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "mesial precentral gyrus",
+                      "children": [
+                        {
+                          "name": "Area 6mp (SMA, mesial SFG)",
+                          "children": [
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "labelIndex": 21,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "21"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "labelIndex": 20,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 6mp (SMA, mesial SFG)",
+                                  "gray": "20"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 6mp (SMA, mesial SFG)",
+                              "arealabel": "Area-6mp",
+                              "status": "publicP",
+                              "labelIndex": "298",
+                              "doi": "https://doi.org/10.25493/2E1T-47F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "mesial precentral gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "medial orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo1 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "labelIndex": 111,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo1 (OFC)",
+                              "labelIndex": 111,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo1 (OFC)",
+                                  "gray": "111"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo1 (OFC)",
+                              "arealabel": "Area-Fo1",
+                              "status": "publicP",
+                              "labelIndex": "3",
+                              "doi": "https://doi.org/10.25493/H2N2-6J2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo3 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "labelIndex": 123,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo3 (OFC)",
+                              "labelIndex": 123,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo3 (OFC)",
+                                  "gray": "123"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo3 (OFC)",
+                              "arealabel": "Area-Fo3",
+                              "status": "publicP",
+                              "labelIndex": "5",
+                              "doi": "https://doi.org/10.25493/E1YQ-65U",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo2 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "labelIndex": 118,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo2 (OFC)",
+                              "labelIndex": 118,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo2 (OFC)",
+                                  "gray": "118"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo2 (OFC)",
+                              "arealabel": "Area-Fo2",
+                              "status": "publicP",
+                              "labelIndex": "4",
+                              "doi": "https://doi.org/10.25493/3JB9-2V2",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "medial orbitofrontal cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "frontal operculum ",
+                      "children": [
+                        {
+                          "name": "Area OP6 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "labelIndex": 39,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "labelIndex": 39,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP6 (Frontal Operculum)",
+                                  "gray": "39"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP6 (Frontal Operculum)",
+                              "arealabel": "Area-OP6",
+                              "status": "publicDOI",
+                              "labelIndex": "349",
+                              "doi": "https://doi.org/10.25493/41KE-8HT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP8 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "labelIndex": 86,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "labelIndex": 86,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP8 (Frontal Operculum)",
+                                  "gray": "86"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP8 (Frontal Operculum)",
+                              "arealabel": "Area-OP8",
+                              "status": "publicDOI",
+                              "labelIndex": "273",
+                              "doi": "https://doi.org/10.25493/NGF8-TA4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP5 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "labelIndex": 90,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "90"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "labelIndex": 91,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP5 (Frontal Operculum)",
+                                  "gray": "91"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP5 (Frontal Operculum)",
+                              "arealabel": "Area-OP5",
+                              "status": "publicDOI",
+                              "labelIndex": "348",
+                              "doi": "https://doi.org/10.25493/TWFH-BJZ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP9 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "labelIndex": 62,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "labelIndex": 62,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP9 (Frontal Operculum)",
+                                  "gray": "62"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP9 (Frontal Operculum)",
+                              "arealabel": "Area-OP9",
+                              "status": "publicDOI",
+                              "labelIndex": "274",
+                              "doi": "https://doi.org/10.25493/3A30-5E4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area OP7 (Frontal Operculum)",
+                          "children": [
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "labelIndex": 45,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "labelIndex": 45,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area OP7 (Frontal Operculum)",
+                                  "gray": "45"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area OP7 (Frontal Operculum)",
+                              "arealabel": "Area-OP7",
+                              "status": "publicDOI",
+                              "labelIndex": "350",
+                              "doi": "https://doi.org/10.25493/T2M3-2ST",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "frontal operculum ",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "lateral orbitofrontal cortex",
+                      "children": [
+                        {
+                          "name": "Area Fo6 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "labelIndex": 113,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo6 (OFC)",
+                              "labelIndex": 113,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo6 (OFC)",
+                                  "gray": "113"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo6 (OFC)",
+                              "arealabel": "Area-Fo6",
+                              "status": "publicDOI",
+                              "labelIndex": "326",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo5 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "labelIndex": 42,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "42"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo5 (OFC)",
+                              "labelIndex": 42,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo5 (OFC)",
+                                  "gray": "42"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo5 (OFC)",
+                              "arealabel": "Area-Fo5",
+                              "status": "publicDOI",
+                              "labelIndex": "325",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo7 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "labelIndex": 70,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo7 (OFC)",
+                              "labelIndex": 70,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo7 (OFC)",
+                                  "gray": "70"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo7 (OFC)",
+                              "arealabel": "Area-Fo7",
+                              "status": "publicDOI",
+                              "labelIndex": "327",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Fo4 (OFC)",
+                          "children": [
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "labelIndex": 10,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Fo4 (OFC)",
+                              "labelIndex": 10,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Fo4 (OFC)",
+                                  "gray": "10"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Fo4 (OFC)",
+                              "arealabel": "Area-Fo4",
+                              "status": "publicDOI",
+                              "labelIndex": "324",
+                              "doi": "https://doi.org/10.3389/fnana.2020.00002",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "lateral orbitofrontal cortex",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "frontal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "insula",
+                  "children": [
+                    {
+                      "name": "granular insula",
+                      "children": [
+                        {
+                          "name": "Area Ig3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "labelIndex": 8,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig3 (Insula)",
+                              "labelIndex": 8,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig3 (Insula)",
+                                  "gray": "8"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig3 (Insula)",
+                              "arealabel": "Area-Ig3",
+                              "status": "publicDOI",
+                              "labelIndex": "336",
+                              "doi": "https://doi.org/10.25493/2FTZ-MWQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "labelIndex": 24,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig1 (Insula)",
+                              "labelIndex": 24,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig1 (Insula)",
+                                  "gray": "24"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig1 (Insula)",
+                              "arealabel": "Area-Ig1",
+                              "status": "publicP",
+                              "labelIndex": "115",
+                              "doi": "https://doi.org/10.25493/EKV9-29D",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Ig2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "labelIndex": 50,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ig2 (Insula)",
+                              "labelIndex": 50,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ig2 (Insula)",
+                                  "gray": "50"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ig2 (Insula)",
+                              "arealabel": "Area-Ig2",
+                              "status": "publicP",
+                              "labelIndex": "114",
+                              "doi": "https://doi.org/10.25493/662G-E0W",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "granular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Ia (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Ia (Insula)",
+                              "labelIndex": 80,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "80"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Ia (Insula)",
+                              "labelIndex": 80,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Ia (Insula)",
+                                  "gray": "80"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Ia (Insula)",
+                              "arealabel": "Area-Ia",
+                              "status": "publicDOI",
+                              "labelIndex": "339",
+                              "doi": "https://doi.org/10.25493/WW8G-T2G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "agranular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dys-agranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id7 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "labelIndex": 107,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "107"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id7 (Insula)",
+                              "labelIndex": 106,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id7 (Insula)",
+                                  "gray": "106"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id7 (Insula)",
+                              "arealabel": "Area-Id7",
+                              "status": "publicDOI",
+                              "labelIndex": "159",
+                              "doi": "https://doi.org/10.25493/88QG-JMS",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dys-agranular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dysgranular insula",
+                      "children": [
+                        {
+                          "name": "Area Id2 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "labelIndex": 55,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id2 (Insula)",
+                              "labelIndex": 55,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id2 (Insula)",
+                                  "gray": "55"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id2 (Insula)",
+                              "arealabel": "Area-Id2",
+                              "status": "publicDOI",
+                              "labelIndex": "56",
+                              "doi": "https://doi.org10.25493/377R-T96",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id1 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "labelIndex": 72,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id1 (Insula)",
+                              "labelIndex": 72,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id1 (Insula)",
+                                  "gray": "72"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id1 (Insula)",
+                              "arealabel": "Area-Id1",
+                              "status": "publicP",
+                              "labelIndex": "116",
+                              "doi": "https://doi.org/10.25493/F37H-8WB",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id5 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "labelIndex": 75,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id5 (Insula)",
+                              "labelIndex": 75,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id5 (Insula)",
+                                  "gray": "75"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id5 (Insula)",
+                              "arealabel": "Area-Id5",
+                              "status": "publicDOI",
+                              "labelIndex": "338",
+                              "doi": "https://doi.org/10.25493/5CK1-B1G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id6 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "labelIndex": 58,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id6 (Insula)",
+                              "labelIndex": 58,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id6 (Insula)",
+                                  "gray": "58"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id6 (Insula)",
+                              "arealabel": "Area-Id6",
+                              "status": "publicDOI",
+                              "labelIndex": "340",
+                              "doi": "https://doi.org/10.25493/54HZ-KFQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id4 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "labelIndex": 54,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id4 (Insula)",
+                              "labelIndex": 54,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id4 (Insula)",
+                                  "gray": "54"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id4 (Insula)",
+                              "arealabel": "Area-Id4",
+                              "status": "publicDOI",
+                              "labelIndex": "337",
+                              "doi": "https://doi.org/10.25493/K63G-89H",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area Id3 (Insula)",
+                          "children": [
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "labelIndex": 20,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "20"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area Id3 (Insula)",
+                              "labelIndex": 21,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area Id3 (Insula)",
+                                  "gray": "21"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area Id3 (Insula)",
+                              "arealabel": "Area-Id3",
+                              "status": "publicDOI",
+                              "labelIndex": "57",
+                              "doi": "https://doi.org/10.25493/AE2S-KT6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dysgranular insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "insula",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "temporal lobe",
+                  "children": [
+                    {
+                      "name": "superior temporal sulcus",
+                      "children": [
+                        {
+                          "name": "Area STS2 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS2 (STS)",
+                              "labelIndex": 19,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS2 (STS)",
+                              "labelIndex": 19,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS2 (STS)",
+                                  "gray": "19"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS2 (STS)",
+                              "arealabel": "Area-STS2",
+                              "status": "publicDOI",
+                              "labelIndex": "272",
+                              "doi": "https://doi.org/10.25493/KHY9-J3Y",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area STS1 (STS)",
+                          "children": [
+                            {
+                              "name": "Area STS1 (STS)",
+                              "labelIndex": 96,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "96"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area STS1 (STS)",
+                              "labelIndex": 95,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area STS1 (STS)",
+                                  "gray": "95"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area STS1 (STS)",
+                              "arealabel": "Area-STS1",
+                              "status": "publicDOI",
+                              "labelIndex": "271",
+                              "doi": "https://doi.org/10.25493/F6DF-H8P",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior temporal sulcus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "superior temporal gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 3 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "labelIndex": 31,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 3 (STG)",
+                              "labelIndex": 31,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 3 (STG)",
+                                  "gray": "31"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 3 (STG)",
+                              "arealabel": "Area-TE-3",
+                              "status": "publicP",
+                              "labelIndex": "31",
+                              "doi": "https://doi.org/10.25493/BN5J-JT8",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.2 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "labelIndex": 119,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "119"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.2 (STG)",
+                              "labelIndex": 119,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.2 (STG)",
+                                  "gray": "119"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.2 (STG)",
+                              "arealabel": "Area-TE-2.2",
+                              "status": "publicDOI",
+                              "labelIndex": "34",
+                              "doi": " https://doi.org/10.25493/RTTN-R5F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 2.1 (STG)",
+                          "children": [
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "labelIndex": 82,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "82"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 2.1 (STG)",
+                              "labelIndex": 81,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 2.1 (STG)",
+                                  "gray": "81"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 2.1 (STG)",
+                              "arealabel": "Area-TE-2.1",
+                              "status": "publicDOI",
+                              "labelIndex": "28",
+                              "doi": "https://doi.org/10.25493/R28N-2TD",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "superior temporal gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "temporal-insula",
+                      "children": [
+                        {
+                          "name": "Area TI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TI (STG)",
+                              "labelIndex": 26,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TI (STG)",
+                              "labelIndex": 26,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TI (STG)",
+                                  "gray": "26"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TI (STG)",
+                              "arealabel": "Area-TI",
+                              "status": "publicDOI",
+                              "labelIndex": "243",
+                              "doi": "https://doi.org/10.25493/57FA-VX6",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TeI (STG)",
+                          "children": [
+                            {
+                              "name": "Area TeI (STG)",
+                              "labelIndex": 124,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TeI (STG)",
+                              "labelIndex": 124,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TeI (STG)",
+                                  "gray": "124"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TeI (STG)",
+                              "arealabel": "Area-TeI",
+                              "status": " publicDOI",
+                              "labelIndex": "242",
+                              "doi": "https://doi.org/10.25493/DTC3-EVM",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "temporal-insula",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "Heschl's gyrus",
+                      "children": [
+                        {
+                          "name": "Area TE 1.2 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "labelIndex": 74,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "labelIndex": 74,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.2 (HESCHL)",
+                                  "gray": "74"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.2 (HESCHL)",
+                              "arealabel": "Area-TE-1.2",
+                              "status": "publicP",
+                              "labelIndex": "30",
+                              "doi": "https://doi.org/10.25493/R382-617",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.1 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "labelIndex": 1,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "labelIndex": 1,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.1 (HESCHL)",
+                                  "gray": "1"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.1 (HESCHL)",
+                              "arealabel": "Area-TE-1.1",
+                              "status": "publicP",
+                              "labelIndex": "33",
+                              "doi": "https://doi.org/10.25493/4HA3-BBE",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area TE 1.0 (HESCHL)",
+                          "children": [
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "labelIndex": 18,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "labelIndex": 18,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area TE 1.0 (HESCHL)",
+                                  "gray": "18"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area TE 1.0 (HESCHL)",
+                              "arealabel": "Area-TE-1.0",
+                              "status": "publicP",
+                              "labelIndex": "27",
+                              "doi": "https://doi.org/10.25493/MV3G-RET",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "Heschl's gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "fusiform gyrus",
+                      "children": [
+                        {
+                          "name": "Area FG2 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "labelIndex": 40,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG2 (FusG)",
+                              "labelIndex": 40,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG2 (FusG)",
+                                  "gray": "40"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG2 (FusG)",
+                              "arealabel": "Area-FG2",
+                              "status": "publicP",
+                              "labelIndex": "106",
+                              "doi": "https://doi.org/10.25493/F2JH-KVV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG3 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "labelIndex": 99,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG3 (FusG)",
+                              "labelIndex": 99,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG3 (FusG)",
+                                  "gray": "99"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG3 (FusG)",
+                              "arealabel": "Area-FG3",
+                              "status": "publicP",
+                              "labelIndex": "239",
+                              "doi": "https://doi.org/10.25493/Z0F6-0SY",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG1 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "labelIndex": 37,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG1 (FusG)",
+                              "labelIndex": 37,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG1 (FusG)",
+                                  "gray": "37"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG1 (FusG)",
+                              "arealabel": "Area-FG1",
+                              "status": "publicP",
+                              "labelIndex": "107",
+                              "doi": "https://doi.org/10.25493/5ZVQ-R8R",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area FG4 (FusG)",
+                          "children": [
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "labelIndex": 108,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area FG4 (FusG)",
+                              "labelIndex": 108,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area FG4 (FusG)",
+                                  "gray": "108"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area FG4 (FusG)",
+                              "arealabel": "Area-FG4",
+                              "status": "publicP",
+                              "labelIndex": "238",
+                              "doi": "https://doi.org/10.25493/13RG-FYV",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "fusiform gyrus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "temporal lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "overall",
+                  "children": [
+                    {
+                      "name": "overall",
+                      "children": [
+                        {
+                          "name": "Frontal-to-Occipital (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "labelIndex": 33,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "labelIndex": 33,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Occipital (GapMap)",
+                                  "gray": "33"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Occipital (GapMap)",
+                              "arealabel": "Frontal-to-Occipital",
+                              "status": "publicP",
+                              "labelIndex": "504",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Temporal-to-Parietal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "labelIndex": 64,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "labelIndex": 64,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Temporal-to-Parietal (GapMap)",
+                                  "gray": "64"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Temporal-to-Parietal (GapMap)",
+                              "arealabel": "Temporal-to-Parietal",
+                              "status": "publicP",
+                              "labelIndex": "503",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-I (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "labelIndex": 14,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-I (GapMap)",
+                              "labelIndex": 14,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-I (GapMap)",
+                                  "gray": "14"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-I (GapMap)",
+                              "arealabel": "Frontal-I",
+                              "status": "publicP",
+                              "labelIndex": "500",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-to-Temporal (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "labelIndex": 100,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "labelIndex": 100,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-to-Temporal (GapMap)",
+                                  "gray": "100"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-to-Temporal (GapMap)",
+                              "arealabel": "Frontal-to-Temporal",
+                              "status": "publicP",
+                              "labelIndex": "502",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Frontal-II (GapMap)",
+                          "children": [
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "labelIndex": 93,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Frontal-II (GapMap)",
+                              "labelIndex": 93,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Frontal-II (GapMap)",
+                                  "gray": "93"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Frontal-II (GapMap)",
+                              "arealabel": "Frontal-II",
+                              "status": "publicP",
+                              "labelIndex": "501",
+                              "doi": "10.1126/science.abb4588",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "overall",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "overall",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                },
+                {
+                  "name": "limbic lobe",
+                  "children": [
+                    {
+                      "name": "cingulate gyrus, frontal part",
+                      "children": [
+                        {
+                          "name": "Area p24c (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24c (pACC)",
+                              "labelIndex": 29,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24c (pACC)",
+                              "labelIndex": 29,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24c (pACC)",
+                                  "gray": "29"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24c (pACC)",
+                              "arealabel": "Area-p24c",
+                              "status": "publicP",
+                              "labelIndex": "232",
+                              "doi": "https://doi.org/10.25493/QA7B-JM9",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 25 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area 25 (sACC)",
+                              "labelIndex": 88,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 25 (sACC)",
+                              "labelIndex": 88,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 25 (sACC)",
+                                  "gray": "88"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 25 (sACC)",
+                              "arealabel": "Area-25",
+                              "status": "publicP",
+                              "labelIndex": "184",
+                              "doi": "https://doi.org/10.25493/51AM-WN4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p24ab (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "labelIndex": 28,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p24ab (pACC)",
+                              "labelIndex": 28,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p24ab (pACC)",
+                                  "gray": "28"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p24ab (pACC)",
+                              "arealabel": "Area-p24ab",
+                              "status": "publicP",
+                              "labelIndex": "231",
+                              "doi": "https://doi.org/10.25493/DHXC-2KN",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s32 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s32 (sACC)",
+                              "labelIndex": 102,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "102"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s32 (sACC)",
+                              "labelIndex": 103,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s32 (sACC)",
+                                  "gray": "103"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s32 (sACC)",
+                              "arealabel": "Area-s32",
+                              "status": "publicP",
+                              "labelIndex": "46",
+                              "doi": "https://doi.org/10.25493/XTRR-172",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area 33 (ACC)",
+                          "children": [
+                            {
+                              "name": "Area 33 (ACC)",
+                              "labelIndex": 47,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area 33 (ACC)",
+                              "labelIndex": 47,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area 33 (ACC)",
+                                  "gray": "47"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area 33 (ACC)",
+                              "arealabel": "Area-33",
+                              "status": "publicP",
+                              "labelIndex": "39",
+                              "doi": "https://doi.org/10.25493/X9QP-C6F",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area p32 (pACC)",
+                          "children": [
+                            {
+                              "name": "Area p32 (pACC)",
+                              "labelIndex": 116,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area p32 (pACC)",
+                              "labelIndex": 116,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area p32 (pACC)",
+                                  "gray": "116"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area p32 (pACC)",
+                              "arealabel": "Area-p32",
+                              "status": "publicP",
+                              "labelIndex": "47",
+                              "doi": "https://doi.org/10.25493/3JX0-7E5",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Area s24 (sACC)",
+                          "children": [
+                            {
+                              "name": "Area s24 (sACC)",
+                              "labelIndex": 112,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Area s24 (sACC)",
+                              "labelIndex": 112,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Area s24 (sACC)",
+                                  "gray": "112"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Area s24 (sACC)",
+                              "arealabel": "Area-s24",
+                              "status": "publicP",
+                              "labelIndex": "183",
+                              "doi": "https://doi.org/10.25493/HXWM-NRX",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "cingulate gyrus, frontal part",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "hippocampal formation",
+                      "children": [
+                        {
+                          "name": "HC-Presubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "labelIndex": 3,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "labelIndex": 3,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Presubiculum (Hippocampus)",
+                                  "gray": "3"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Presubiculum (Hippocampus)",
+                              "arealabel": "HC-Presubiculum",
+                              "status": "publicP",
+                              "labelIndex": "63",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HATA (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "labelIndex": 67,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HATA (Hippocampus)",
+                              "labelIndex": 67,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HATA (Hippocampus)",
+                                  "gray": "67"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HATA (Hippocampus)",
+                              "arealabel": "HATA",
+                              "status": "publicP",
+                              "labelIndex": "68",
+                              "doi": "https://doi.org/10.25493/M1XP-VSQ",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Entorhinal Cortex",
+                          "children": [
+                            {
+                              "name": "Entorhinal Cortex",
+                              "labelIndex": 53,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Entorhinal Cortex",
+                              "labelIndex": 53,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Entorhinal Cortex",
+                                  "gray": "53"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Entorhinal Cortex",
+                              "arealabel": "Entorhinal-Cortex",
+                              "status": "publicP",
+                              "labelIndex": "60",
+                              "doi": "https://doi.org/10.25493/KNXY-B1Z",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA3 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "labelIndex": 91,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "91"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA3 (Hippocampus)",
+                              "labelIndex": 90,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA3 (Hippocampus)",
+                                  "gray": "90"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA3 (Hippocampus)",
+                              "arealabel": "CA3",
+                              "status": "publicP",
+                              "labelIndex": "59",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Transsubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "labelIndex": 87,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "labelIndex": 87,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Transsubiculum (Hippocampus)",
+                                  "gray": "87"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Transsubiculum (Hippocampus)",
+                              "arealabel": "HC-Transsubiculum",
+                              "status": "publicP",
+                              "labelIndex": "305",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Subiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "labelIndex": 63,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "labelIndex": 63,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Subiculum (Hippocampus)",
+                                  "gray": "63"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Subiculum (Hippocampus)",
+                              "arealabel": "HC-Subiculum",
+                              "status": "publicP",
+                              "labelIndex": "67",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Prosubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "labelIndex": 48,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "labelIndex": 48,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Prosubiculum (Hippocampus)",
+                                  "gray": "48"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Prosubiculum (Hippocampus)",
+                              "arealabel": "HC-Prosubiculum",
+                              "status": "publicP",
+                              "labelIndex": "64",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "HC-Parasubiculum (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "labelIndex": 59,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              }
+                            },
+                            {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "labelIndex": 59,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "HC-Parasubiculum (Hippocampus)",
+                                  "gray": "59"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "HC-Parasubiculum (Hippocampus)",
+                              "arealabel": "HC-Parasubiculum",
+                              "status": "publicP",
+                              "labelIndex": "62",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "DG (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "DG (Hippocampus)",
+                              "labelIndex": 22,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              }
+                            },
+                            {
+                              "name": "DG (Hippocampus)",
+                              "labelIndex": 22,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "DG (Hippocampus)",
+                                  "gray": "22"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "DG (Hippocampus)",
+                              "arealabel": "DG",
+                              "status": "publicP",
+                              "labelIndex": "61",
+                              "doi": "https://doi.org/10.25493/M8JP-XQT",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA2 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "labelIndex": 51,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA2 (Hippocampus)",
+                              "labelIndex": 51,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA2 (Hippocampus)",
+                                  "gray": "51"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA2 (Hippocampus)",
+                              "arealabel": "CA2",
+                              "status": "publicP",
+                              "labelIndex": "58",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "CA1 (Hippocampus)",
+                          "children": [
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "labelIndex": 57,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "57"
+                                }
+                              }
+                            },
+                            {
+                              "name": "CA1 (Hippocampus)",
+                              "labelIndex": 56,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "CA1 (Hippocampus)",
+                                  "gray": "56"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "CA1 (Hippocampus)",
+                              "arealabel": "CA1",
+                              "status": "publicP",
+                              "labelIndex": "66",
+                              "doi": "https://doi.org/10.1007%2Fs00429-019-02022-4",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "hippocampal formation",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "limbic lobe",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                }
+              ],
+              "_": {
+                "julichbrain-ontology_25.json": {
+                  "name": "cerebral cortex",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null
+                }
+              }
+            }
+          ],
+          "_": {
+            "julichbrain-ontology_25.json": {
+              "name": "telencephalon",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null
+            }
+          }
+        },
+        {
+          "name": "metencephalon",
+          "children": [
+            {
+              "name": "cerebellum",
+              "children": [
+                {
+                  "name": "cerebellar nuclei",
+                  "children": [
+                    {
+                      "name": "globose nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "globose nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "dentate nucleus",
+                      "children": [
+                        {
+                          "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 16,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 16,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                                  "gray": "16"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Dorsal Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Dorsal-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "240",
+                              "doi": "https://doi.org/10.25493/M5QG-SHH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        },
+                        {
+                          "name": "Ventral Dentate Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 65,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "labelIndex": 65,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Ventral Dentate Nucleus (Cerebellum)",
+                                  "gray": "65"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Ventral Dentate Nucleus (Cerebellum)",
+                              "arealabel": "Ventral-Dentate-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "241",
+                              "doi": "https://doi.org/10.25493/FQE5-5QR",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "dentate nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "fastigial nucleus",
+                      "children": [
+                        {
+                          "name": "Fastigial Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "labelIndex": 103,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "103"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "labelIndex": 102,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Fastigial Nucleus (Cerebellum)",
+                                  "gray": "102"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Fastigial Nucleus (Cerebellum)",
+                              "arealabel": "Fastigial-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "219",
+                              "doi": "https://doi.org/10.25493/3YJ9-S6G",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "fastigial nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    },
+                    {
+                      "name": "emboliform nucleus",
+                      "children": [
+                        {
+                          "name": "Interposed Nucleus (Cerebellum)",
+                          "children": [
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "COLIN_V25_LEFT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            },
+                            {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "labelIndex": 109,
+                              "ngId": "COLIN_V25_RIGHT_NG",
+                              "_": {
+                                "xml": {
+                                  "name": "Interposed Nucleus (Cerebellum)",
+                                  "gray": "109"
+                                }
+                              }
+                            }
+                          ],
+                          "_": {
+                            "julichbrain-ontology_25.json": {
+                              "name": "Interposed Nucleus (Cerebellum)",
+                              "arealabel": "Interposed-Nucleus",
+                              "status": "publicP",
+                              "labelIndex": "251",
+                              "doi": "https://doi.org/10.25493/8PTB-JDH",
+                              "synonyms": [],
+                              "rgb": null
+                            }
+                          }
+                        }
+                      ],
+                      "_": {
+                        "julichbrain-ontology_25.json": {
+                          "name": "emboliform nucleus",
+                          "status": null,
+                          "labelIndex": null,
+                          "synonyms": [],
+                          "rgb": null
+                        }
+                      }
+                    }
+                  ],
+                  "_": {
+                    "julichbrain-ontology_25.json": {
+                      "name": "cerebellar nuclei",
+                      "status": null,
+                      "labelIndex": null,
+                      "synonyms": [],
+                      "rgb": null
+                    }
+                  }
+                }
+              ],
+              "_": {
+                "julichbrain-ontology_25.json": {
+                  "name": "cerebellum",
+                  "status": null,
+                  "labelIndex": null,
+                  "synonyms": [],
+                  "rgb": null
+                }
+              }
+            }
+          ],
+          "_": {
+            "julichbrain-ontology_25.json": {
+              "name": "metencephalon",
+              "status": null,
+              "labelIndex": null,
+              "synonyms": [],
+              "rgb": null
+            }
+          }
+        }
+      ],
+      "_": {
+        "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201202_JulichBrainHierarchy/src/07a76da90bdbd35e56a01de817befbe6c12f91da/output/nehubaUI/colin_regions.json"
+      }
+    },
     {
       "fullId": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
       "@id": "minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579",
diff --git a/src/res/ext/colinNehubaConfig.json b/src/res/ext/colinNehubaConfig.json
index 92a712d78d90aa5c7bd8c09f08e1651a7ea2a87d..d6c850ca8473d7f0e56bbfee24ef063111595830 100644
--- a/src/res/ext/colinNehubaConfig.json
+++ b/src/res/ext/colinNehubaConfig.json
@@ -87,6 +87,136 @@
             ]
           ]
         },
+        "COLIN_V25_RIGHT_NG_SPLIT_HEMISPHERE": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201204_JulichBrainV3_0_hemisphereSplit/precomputed/JuBrain_Map_colin_v30_r_fixed",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -90500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -126500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -72500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "COLIN_V25_LEFT_NG_SPLIT_HEMISPHERE": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201204_JulichBrainV3_0_hemisphereSplit/precomputed/JuBrain_Map_colin_v30_l_fixed",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -90500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -126500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -72500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ]
+        },
+        "COLIN_V25_LEFT_NG": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201202_JulichBrainV2_5_colin_MPM/precomputed/JulichBrain_MPMAtlas_l_N10_nlin2Stdcolin27_publicDOI_37fdd19c7ce06ca709a34e21d8ec0886",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -128500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -148500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -110500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ],
+          "_": {
+            "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20200926_JulichBrain-V2_4-Colin_MPM_mesh/raw/745a37f64b6995a661f5a61287b4067df01687cb/output/nehuba-ui/left_config.json"
+          }
+        },
+        "COLIN_V25_RIGHT_NG": {
+          "type": "segmentation",
+          "visible": true,
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201202_JulichBrainV2_5_colin_MPM/precomputed/JulichBrain_MPMAtlas_r_N10_nlin2Stdcolin27_publicDOI_387941812ac0807aa1c7050b109ce623",
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -128500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -148500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -110500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ],
+          "_": {
+            "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20200926_JulichBrain-V2_4-Colin_MPM_mesh/raw/745a37f64b6995a661f5a61287b4067df01687cb/output/nehuba-ui/right_config.json"
+          }
+        },
         "COLIN_V24_LEFT_NG": {
           "type": "segmentation",
           "visible": true,
diff --git a/src/services/effect/effect.spec.ts b/src/services/effect/effect.spec.ts
index 9d36abbe0971ad7a2c2029652372cf557be3376a..a65e40146f7f9be14f93f6cd7a780d806aca00c5 100644
--- a/src/services/effect/effect.spec.ts
+++ b/src/services/effect/effect.spec.ts
@@ -11,6 +11,7 @@ import { defaultRootState } from '../stateStore.service'
 const colinsJson = require('!json-loader!../../res/ext/colin.json')
 
 const COLIN_JULICHBRAIN_LAYER_NAME = `COLIN_V24_LEFT_NG`
+const COLIN_V24_ID = 'minds/core/parcellationatlas/v1.0.0/94c1125b-b87e-45e4-901c-00daee7f2579'
 
 describe('effect.ts', () => {
   describe('getGetRegionFromLabelIndexId', () => {
@@ -18,7 +19,7 @@ describe('effect.ts', () => {
 
       const getRegionFromlabelIndexId = getGetRegionFromLabelIndexId({
         parcellation: {
-          ...colinsJson.parcellations[0],
+          ...colinsJson.parcellations.find(p => p['@id'] === COLIN_V24_ID),
           updated: true,
         },
       })
diff --git a/src/services/state/dataStore.store.ts b/src/services/state/dataStore.store.ts
index aae960f5f7a6dcb032793dfdb80c1033f6e860d1..42e389fcf2d4f1d6e462e583337c09e958005de1 100644
--- a/src/services/state/dataStore.store.ts
+++ b/src/services/state/dataStore.store.ts
@@ -6,6 +6,7 @@ import { Action } from '@ngrx/store'
 import { GENERAL_ACTION_TYPES } from '../stateStore.service'
 import { LOCAL_STORAGE_CONST } from 'src/util/constants'
 import { datastateActionUpdateFavDataset } from './dataState/actions'
+import { IHasId } from 'src/util/interfaces'
 
 /**
  * TODO merge with databrowser.usereffect.ts
@@ -114,7 +115,7 @@ export interface IDataEntry {
   referenceSpaces: IReferenceSpace[]
   files: File[]
   publications: IPublication[]
-  embargoStatus: string[]
+  embargoStatus: IHasId[]
 
   methods: string[]
   protocols: string[]
diff --git a/src/ui/databrowserModule/constants.ts b/src/ui/databrowserModule/constants.ts
index aaed7658f9b1a6bd79d2f56b0932c7319abafe79..45de86bd2ccec91d890921b5d2c0516936ef354a 100644
--- a/src/ui/databrowserModule/constants.ts
+++ b/src/ui/databrowserModule/constants.ts
@@ -1,6 +1,11 @@
 import { InjectionToken } from "@angular/core";
 import { LOCAL_STORAGE_CONST } from "src/util/constants";
 import { Observable } from "rxjs";
+import { IHasId } from "src/util/interfaces";
+
+export const UNDER_REVIEW = {
+  ['@id']: "https://nexus.humanbrainproject.org/v0/data/minds/core/embargostatus/v1.0.0/1d726b76-b176-47ed-96f0-b4f2e17d5f19"
+}
 
 export const OVERRIDE_IAV_DATASET_PREVIEW_DATASET_FN = new InjectionToken<(file: any, dataset: any) => void>('OVERRIDE_IAV_DATASET_PREVIEW_DATASET_FN')
 export const DATASTORE_DEFAULT_STATE = {
@@ -74,7 +79,7 @@ export interface IKgDataEntry {
   referenceSpaces: IKgReferenceSpace[]
   files: File[]
   publications: IKgPublication[]
-  embargoStatus: string[]
+  embargoStatus: IHasId[]
 
   methods: string[]
   protocols: string[]
diff --git a/src/ui/databrowserModule/preview/previewCard/previewCard.template.html b/src/ui/databrowserModule/preview/previewCard/previewCard.template.html
index 51c3b7a79e00f0dbe0dd127b9d36b842ca19d1d1..697ef4010d189ef662977b2c2716363b6d4e53fe 100644
--- a/src/ui/databrowserModule/preview/previewCard/previewCard.template.html
+++ b/src/ui/databrowserModule/preview/previewCard/previewCard.template.html
@@ -1,5 +1,5 @@
 <mat-card class="mat-elevation-z4">
-  <div class="header-container">
+  <div class="header-container bg-50-grey-20">
     <mat-card-title>
       {{ singleDsView?.name || file.name || filename }}
     </mat-card-title>
@@ -41,25 +41,51 @@
       
     </mat-card-subtitle>
   </div>
-</mat-card>
 
-<mat-card class="mt-4">
-  <single-dataset-view [fullId]="datasetId"
-    [hideTitle]="true"
-    [hidePreview]="true"
-    [hideExplore]="true"
-    [hidePinBtn]="true"
-    [hideDownloadBtn]="true"
-    #singleDsView="singleDatasetView">
+  <mat-card-content class="mt-2 ml-15px-n mr-15px-n pb-4">
+    <mat-accordion>
+      <mat-expansion-panel hideToggle
+        [expanded]="true">
+    
+        <mat-expansion-panel-header>
+          <mat-panel-title>
+            Description
+          </mat-panel-title>
+        </mat-expansion-panel-header>
+    
+        <ng-template matExpansionPanelContent>
+          <single-dataset-view [fullId]="datasetId"
+            [hideTitle]="true"
+            [hidePreview]="true"
+            [hideExplore]="true"
+            [hidePinBtn]="true"
+            [hideDownloadBtn]="true"
+            #singleDsView="singleDatasetView">
+          
+          </single-dataset-view>
+        </ng-template>
+      </mat-expansion-panel>
 
-  </single-dataset-view>
-</mat-card>
 
-<!-- TODO -->
-<!-- this is not exactly right -->
-<div class="mt-4">
-  <layer-browser></layer-browser>
-</div>
+      <mat-expansion-panel hideToggle>
+
+        <mat-expansion-panel-header>
+          <mat-panel-title>
+            Registered Volumes
+          </mat-panel-title>
+        </mat-expansion-panel-header>
+
+        <ng-template matExpansionPanelContent>
+          <!-- TODO -->
+          <!-- this is not exactly right -->
+          <layer-browser class="ml-24px-n mr-24px-n"></layer-browser>
+        </ng-template>
+
+      </mat-expansion-panel>
+    </mat-accordion>
+    
+  </mat-card-content>
+</mat-card>
 
 <!-- templates -->
 <ng-template #favDatasetBtn let-singleDataset="singleDataset">
@@ -76,3 +102,14 @@
     </button>
   </ng-template>
 </ng-template>
+
+<single-dataset-view [fullId]="datasetId"
+  [hidden]="true"
+  [hideTitle]="true"
+  [hidePreview]="true"
+  [hideExplore]="true"
+  [hidePinBtn]="true"
+  [hideDownloadBtn]="true"
+  #singleDsView="singleDatasetView">
+
+</single-dataset-view>
\ No newline at end of file
diff --git a/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.component.ts b/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.component.ts
index ca11f4955796b127e928fe8f29426cf52070c31a..d3de2c8a8805192414a4f4ec2f93c04348563853 100644
--- a/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.component.ts
+++ b/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.component.ts
@@ -5,7 +5,7 @@ import { REGION_OF_INTEREST, TRegionOfInterest } from "src/util/interfaces";
 import { DatabrowserService } from "../../databrowser.service";
 import { KgSingleDatasetService } from "../../kgSingleDatasetService.service";
 import { SingleDatasetBase } from "../singleDataset.base";
-
+import { CONST } from 'common/constants'
 
 @Component({
   selector: 'single-dataset-sidenav-view',
@@ -21,6 +21,8 @@ export class SingleDatasetSideNavView extends SingleDatasetBase implements OnCha
   @Output()
   clear: EventEmitter<null> = new EventEmitter()
 
+  public GDPR_TEXT = CONST.GDPR_TEXT
+
   constructor(
     dbService: DatabrowserService,
     sDsService: KgSingleDatasetService,
diff --git a/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.template.html b/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.template.html
index 0a64ef91df8cf25d0f2c594298dd7f0511078285..7ad003e91beeeb352324596cc8b645c8b881bfcb 100644
--- a/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.template.html
+++ b/src/ui/databrowserModule/singleDataset/sideNavView/sDsSideNavView.template.html
@@ -8,8 +8,7 @@
 </button>
 
 <mat-card class="mat-elevation-z4">
-  <div class="header-container"
-    [style.backgroundColor]="'rgba(128,128,128, 0.2)'">
+  <div class="header-container bg-50-grey-20">
     <mat-card-title>
       <ng-content select="[region-of-interest]"></ng-content>
       <div *ngIf="!fetchFlag; else isLoadingTmpl">
@@ -23,6 +22,12 @@
         Dataset
       </span>
 
+      <button *ngIf="isGdprProtected"
+        [matTooltip]="GDPR_TEXT"
+        mat-icon-button color="warn">
+        <i class="fas fa-exclamation-triangle"></i>
+      </button>
+
       <mat-divider [vertical]="true" class="ml-2 h-2rem"></mat-divider>
 
       <!-- explore btn -->
@@ -53,12 +58,11 @@
     </mat-card-subtitle>
   </div>
 
-  <mat-card-content class="mt-2 ml-15px-n mr-15px-n">
+  <mat-card-content class="mt-2 ml-15px-n mr-15px-n pb-4">
     <mat-accordion>
 
       <!-- Description -->
-      <mat-expansion-panel hideToggle
-        [expanded]="true">
+      <mat-expansion-panel>
         <mat-expansion-panel-header>
           <mat-panel-title>
             Description
@@ -120,8 +124,7 @@
       <!-- feature tmpl -->
       <ng-template #featureTmpl>
         <ng-container *ngFor="let feature of (rfGetAllFeatures.features | filterRegionFeaturesById : fullId)">
-          <mat-expansion-panel hideToggle
-            #matExpansionPanel>
+          <mat-expansion-panel #matExpansionPanel>
             <mat-expansion-panel-header>
               <mat-panel-title>
                 {{ feature.type }}
diff --git a/src/ui/databrowserModule/singleDataset/singleDataset.base.ts b/src/ui/databrowserModule/singleDataset/singleDataset.base.ts
index 93367c8ae2283dd216c7d861f9b05b82198af5be..4db7d45dd6d32450ae35f27434c8970b611157e7 100644
--- a/src/ui/databrowserModule/singleDataset/singleDataset.base.ts
+++ b/src/ui/databrowserModule/singleDataset/singleDataset.base.ts
@@ -12,6 +12,7 @@ import { MatSnackBar } from "@angular/material/snack-bar";
 import { ARIA_LABELS } from 'common/constants'
 import { switchMap, distinctUntilChanged, filter } from "rxjs/operators";
 import { IContributor } from "../contributor";
+import { UNDER_REVIEW } from "../constants";
 
 const getDirectLinkToKg = (dataset: { fullId: string, id: string }) => {
   const { id } = dataset
@@ -96,6 +97,8 @@ export class SingleDatasetBase implements OnChanges, OnDestroy {
   public DS_PREVIEW_URL = DS_PREVIEW_URL
   public strictLocal: boolean = STRICT_LOCAL
 
+  public isGdprProtected: boolean = false
+
   /**
    * sic!
    */
@@ -144,7 +147,7 @@ export class SingleDatasetBase implements OnChanges, OnDestroy {
 
           const { kgSchema, kgId } = this
 
-          const { name, description, publications, fullId, kgReference, files, contributors, ...rest } = dataset
+          const { name, description, publications, fullId, kgReference, files, contributors, embargoStatus, ...rest } = dataset
           this.name = name
           this.description = description
           this.publications = publications
@@ -152,6 +155,8 @@ export class SingleDatasetBase implements OnChanges, OnDestroy {
           this.files = files
           this.fullId = fullId
 
+          this.isGdprProtected = embargoStatus.some(s => s['@id'] === UNDER_REVIEW['@id'])
+
           this.kgReference = kgReference
           this.directLinkToKg = getDirectLinkToKg(dataset)
 
diff --git a/src/ui/nehubaContainer/2dLandmarks/landmark.base.ts b/src/ui/nehubaContainer/2dLandmarks/landmark.base.ts
new file mode 100644
index 0000000000000000000000000000000000000000..52144fb7a41476a6387914067062fd6af99a3653
--- /dev/null
+++ b/src/ui/nehubaContainer/2dLandmarks/landmark.base.ts
@@ -0,0 +1,7 @@
+import { Input } from "@angular/core"
+
+export class LandmarkUnitBase{
+  @Input() public positionX: number = 0
+  @Input() public positionY: number = 0
+  @Input() public positionZ: number = 0
+}
diff --git a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.component.spec.ts b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.component.spec.ts
similarity index 94%
rename from src/ui/nehubaContainer/landmarkUnit/landmarkUnit.component.spec.ts
rename to src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.component.spec.ts
index 582f3f183379b5c8d65e5de6bac52f09e32a986d..b1861a32ae1f874b8a42bbc1ca94e94e6f3a9168 100644
--- a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.component.spec.ts
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.component.spec.ts
@@ -1,6 +1,6 @@
 import { Component, ViewChild } from "@angular/core"
 import { async, TestBed } from "@angular/core/testing"
-import { SafeStylePipe } from "src/util/pipes/safeStyle.pipe"
+import { Landmark2DModule } from "../module"
 import { HOVER_COLOR, LandmarkUnit, NORMAL_COLOR } from "./landmarkUnit.component"
 
 
@@ -27,15 +27,16 @@ describe('> landmarkUnit.component.ts', () => {
   describe('> LandmarkUnit', () => {
     beforeEach(async(() => {
       TestBed.configureTestingModule({
+        imports: [
+          Landmark2DModule
+        ],
         declarations: [
-          DummyCmp,
-          LandmarkUnit,
-          SafeStylePipe
+          DummyCmp
         ]
       }).overrideComponent(DummyCmp, {
         set: {
           template: `
-          <nehuba-2dlandmark-unit
+          <landmark-2d-stalk-cmp
             [positionX]="positionX"
             [positionY]="positionY"
             [positionZ]="positionZ"
@@ -44,7 +45,7 @@ describe('> landmarkUnit.component.ts', () => {
             [flatProjection]="flatProjection"
             [fasClass]="fasClass" 
             >
-          </nehuba-2dlandmark-unit>
+          </landmark-2d-stalk-cmp>
           `
         }
       }).compileComponents()
@@ -121,4 +122,4 @@ describe('> landmarkUnit.component.ts', () => {
       })
     })
   })
-})
\ No newline at end of file
+})
diff --git a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.component.ts b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.component.ts
similarity index 93%
rename from src/ui/nehubaContainer/landmarkUnit/landmarkUnit.component.ts
rename to src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.component.ts
index 5a9880a066b96a7f7d5f6a0ea26e62c739937460..e072f64328efe9bd2c4c5992d8b817db5d230a8d 100644
--- a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.component.ts
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.component.ts
@@ -1,7 +1,8 @@
 import { ChangeDetectionStrategy, Component, HostBinding, Input, OnChanges, SimpleChanges } from "@angular/core";
+import { LandmarkUnitBase } from "../landmark.base";
 
 @Component({
-  selector : 'nehuba-2dlandmark-unit',
+  selector : 'landmark-2d-stalk-cmp',
   templateUrl : './landmarkUnit.template.html',
   styleUrls : [
     `./landmarkUnit.style.css`,
@@ -9,15 +10,12 @@ import { ChangeDetectionStrategy, Component, HostBinding, Input, OnChanges, Simp
   changeDetection : ChangeDetectionStrategy.OnPush,
 })
 
-export class LandmarkUnit implements OnChanges {
-  @Input() public positionX: number = 0
-  @Input() public positionY: number = 0
-  @Input() public positionZ: number = 0
+export class LandmarkUnit extends LandmarkUnitBase implements OnChanges {
 
   @Input() public color: [number, number, number]
 
   @Input() public highlight: boolean = false
-  @Input() public flatProjection: boolean = false
+  @Input() public flatProjection: boolean = true
 
   @Input() public fasClass: string = 'fa-map-marker'
 
@@ -136,6 +134,10 @@ export class LandmarkUnit implements OnChanges {
       }
     }
   }
+
+  constructor(){
+    super()
+  }
 }
 
 export const NORMAL_COLOR: number[] = [201,54,38]
diff --git a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.style.css b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.style.css
similarity index 99%
rename from src/ui/nehubaContainer/landmarkUnit/landmarkUnit.style.css
rename to src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.style.css
index 6a09196fe028c971d28eb6f22ac3e87d385dafb7..b7285126604a52e78cf55a954275d59d605925be 100644
--- a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.style.css
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.style.css
@@ -88,4 +88,4 @@ div[landmarkContainer]
     rgb(0, 0, 0) 0px 1px, 
     rgb(0, 0, 0) 1px 0px, 
     rgb(0, 0, 0) 0px -1px;
-}
\ No newline at end of file
+}
diff --git a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.template.html b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.template.html
similarity index 99%
rename from src/ui/nehubaContainer/landmarkUnit/landmarkUnit.template.html
rename to src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.template.html
index b28146e8fd8f3543897d90897f4fa6e7540cccc9..2caadee1b9554127752b2f491862cce8f335d8d7 100644
--- a/src/ui/nehubaContainer/landmarkUnit/landmarkUnit.template.html
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnit/landmarkUnit.template.html
@@ -37,4 +37,4 @@
     class="pos-shadow">
     
   </div>
-</div>
\ No newline at end of file
+</div>
diff --git a/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.component.ts b/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e425aca205c81b4e644508a769f280e65c6abcc0
--- /dev/null
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.component.ts
@@ -0,0 +1,50 @@
+import { ChangeDetectionStrategy, ChangeDetectorRef, Component, HostBinding, OnChanges, SimpleChanges } from "@angular/core";
+import { LandmarkUnitBase } from "../landmark.base";
+
+@Component({
+  selector: 'landmark-2d-flat-cmp',
+  templateUrl: './flatLm.template.html',
+  styleUrls: [
+    './flatLm.style.css'
+  ],
+  changeDetection: ChangeDetectionStrategy.OnPush
+})
+
+export class FlatLMCmp extends LandmarkUnitBase implements OnChanges{
+
+  @HostBinding('style.transform')
+  transform = `translate(0px, 0px)`
+
+  @HostBinding('style.opacity')
+  opacity = 1.0
+
+  @HostBinding('style.text-shadow')
+  textShadow = null
+
+  private scale: number = 1
+
+  constructor(private cdr: ChangeDetectorRef){
+    super()
+    this.cdr.detach()
+  }
+
+  ngOnChanges(){
+    
+    const zModifier = Math.tanh(this.positionZ/10)
+    if (this.positionZ >= 0) {
+      const shadowLength =  zModifier * 4
+      this.textShadow = `0 ${shadowLength}px ${shadowLength}px black`
+      this.opacity = 1.0
+    } else {
+      this.textShadow = null
+      /**
+       * assert(zModifier < 0)
+       */
+      this.opacity = 1.0 + (zModifier * 0.8)
+    }
+
+    this.transform = `translate(${this.positionX}px, ${this.positionY - (zModifier >= 0 ? zModifier * 4 : 0) }px)`
+  }
+}
+
+export const NORMAL_COLOR: number[] = [201,54,38]
diff --git a/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.style.css b/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.style.css
new file mode 100644
index 0000000000000000000000000000000000000000..462b4c7efcef86358db18579f078dc9043c37fab
--- /dev/null
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.style.css
@@ -0,0 +1,10 @@
+:host
+{
+  position: absolute;
+  color: rgba(201, 54, 38, 1.0)
+}
+
+:host > div
+{
+  transform: translate(-50%, -50%);
+}
diff --git a/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.template.html b/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.template.html
new file mode 100644
index 0000000000000000000000000000000000000000..a28b3899ac23b46084447e6104158475ca30f932
--- /dev/null
+++ b/src/ui/nehubaContainer/2dLandmarks/landmarkUnitMkII/flatLm.template.html
@@ -0,0 +1,3 @@
+<div class="pe-all">
+  <i class="fas fa-circle"></i>
+</div>
diff --git a/src/ui/nehubaContainer/2dLandmarks/module.ts b/src/ui/nehubaContainer/2dLandmarks/module.ts
new file mode 100644
index 0000000000000000000000000000000000000000..210aad4f4084c3045cea7cf203bd97ef206000c9
--- /dev/null
+++ b/src/ui/nehubaContainer/2dLandmarks/module.ts
@@ -0,0 +1,26 @@
+import { CommonModule } from "@angular/common";
+import { NgModule } from "@angular/core";
+import { LandmarkUnit } from "./landmarkUnit/landmarkUnit.component";
+import { FlatLMCmp } from "./landmarkUnitMkII/flatLm.component";
+import { SafeStylePipe } from "./safeStyle.pipe";
+
+@NgModule({
+  imports: [
+    CommonModule,
+  ],
+  declarations: [
+    LandmarkUnit,
+    FlatLMCmp,
+
+    /**
+     * pipes
+     */
+    SafeStylePipe,
+  ],
+  exports: [
+    LandmarkUnit,
+    FlatLMCmp,
+  ]
+})
+
+export class Landmark2DModule{}
diff --git a/src/util/pipes/safeStyle.pipe.ts b/src/ui/nehubaContainer/2dLandmarks/safeStyle.pipe.ts
similarity index 100%
rename from src/util/pipes/safeStyle.pipe.ts
rename to src/ui/nehubaContainer/2dLandmarks/safeStyle.pipe.ts
diff --git a/src/ui/nehubaContainer/nehubaContainer.component.spec.ts b/src/ui/nehubaContainer/nehubaContainer.component.spec.ts
index f14ef99c49fe88828f14cfb3bb25c39dcc2f744b..6feb8bf6185716a5e374a3588a8e498da519ce49 100644
--- a/src/ui/nehubaContainer/nehubaContainer.component.spec.ts
+++ b/src/ui/nehubaContainer/nehubaContainer.component.spec.ts
@@ -6,7 +6,6 @@ import { defaultRootState } from 'src/services/stateStore.service'
 import { AngularMaterialModule } from "../sharedModules/angularMaterial.module"
 import { TouchSideClass } from "./touchSideClass.directive"
 import { MaximmisePanelButton } from "./maximisePanelButton/maximisePanelButton.component"
-import { LandmarkUnit } from './landmarkUnit/landmarkUnit.component'
 import { LayoutModule } from 'src/layouts/layout.module'
 import { PureContantService, UtilModule } from "src/util"
 import { AtlasLayerSelector } from "../atlasLayerSelector/atlasLayerSelector.component"
@@ -21,7 +20,6 @@ import { RegionDirective } from 'src/ui/parcellationRegion/region.directive'
 import { RegionTextSearchAutocomplete } from "../viewerStateController/regionSearch/regionSearch.component"
 import { MobileControlNubStylePipe } from './pipes/mobileControlNubStyle.pipe'
 import { ReorderPanelIndexPipe } from './reorderPanelIndex.pipe'
-import { SafeStylePipe } from 'src/util/pipes/safeStyle.pipe'
 import { AuthModule } from 'src/auth'
 import { StateModule } from 'src/state'
 import { ReactiveFormsModule, FormsModule } from '@angular/forms'
@@ -30,7 +28,7 @@ import { WidgetModule } from 'src/widget'
 import { NehubaModule } from './nehuba.module'
 import { CommonModule } from '@angular/common'
 import { IMPORT_NEHUBA_INJECT_TOKEN } from './nehubaViewer/nehubaViewer.component'
-import { viewerStateHelperStoreName } from 'src/services/state/viewerState.store.helper'
+import { viewerStateCustomLandmarkSelector, viewerStateHelperStoreName } from 'src/services/state/viewerState.store.helper'
 import { RenderViewOriginDatasetLabelPipe } from '../parcellationRegion/region.base'
 import { By } from '@angular/platform-browser'
 import { ARIA_LABELS } from 'common/constants'
@@ -38,9 +36,10 @@ import { NoopAnimationsModule } from '@angular/platform-browser/animations'
 import { RegionAccordionTooltipTextPipe } from '../util'
 import { hot } from 'jasmine-marbles'
 import { HttpClientTestingModule } from '@angular/common/http/testing'
-import { ngViewerSelectorPanelMode, ngViewerSelectorPanelOrder } from 'src/services/state/ngViewerState/selectors'
+import { ngViewerSelectorOctantRemoval, ngViewerSelectorPanelMode, ngViewerSelectorPanelOrder } from 'src/services/state/ngViewerState/selectors'
 import { PANELS } from 'src/services/state/ngViewerState/constants'
 import { RegionalFeaturesModule } from '../regionalFeatures'
+import { Landmark2DModule } from './2dLandmarks/module'
 
 const { 
   TOGGLE_SIDE_PANEL,
@@ -88,12 +87,12 @@ describe('> nehubaContainer.component.ts', () => {
            * so and so components needs to be compiled first. make sure you call compileComponents
            */
           HttpClientTestingModule,
+          Landmark2DModule,
         ],
         declarations: [
           NehubaContainer,
           TouchSideClass,
           MaximmisePanelButton,
-          LandmarkUnit,
           AtlasLayerSelector,
           StatusCardComponent,
           NehubaViewerTouchDirective,
@@ -107,7 +106,6 @@ describe('> nehubaContainer.component.ts', () => {
           // pipes
           MobileControlNubStylePipe,
           ReorderPanelIndexPipe,
-          SafeStylePipe,
           RenderViewOriginDatasetLabelPipe,
           RegionAccordionTooltipTextPipe,
         ],
@@ -636,5 +634,66 @@ describe('> nehubaContainer.component.ts', () => {
       
       })
     })
+  
+    describe('> on userLandmarks change', () => {
+      const lm1 = {
+        id: 'test-1',
+        position: [0, 0, 0]
+      }
+      const lm2 = {
+        id: 'test-2',
+        position: [1, 1,1 ]
+      }
+      it('> calls nehubaViewer.updateUserLandmarks', () => {
+        const fixture = TestBed.createComponent(NehubaContainer)
+
+        fixture.componentInstance.nehubaViewer = {
+          updateUserLandmarks: () => {}
+        } as any
+
+        const updateUserLandmarksSpy = spyOn(
+          fixture.componentInstance.nehubaViewer,
+          'updateUserLandmarks'
+        )
+
+        const mockStore = TestBed.inject(MockStore)
+        mockStore.overrideSelector(viewerStateCustomLandmarkSelector, [
+          lm1, 
+          lm2
+        ])
+        fixture.detectChanges()
+        expect(
+          updateUserLandmarksSpy
+        ).toHaveBeenCalledWith([
+          lm1, lm2
+        ])
+      })
+    
+      it('> calls togglecotantREmoval', () => {
+        
+        const fixture = TestBed.createComponent(NehubaContainer)
+
+        fixture.componentInstance.nehubaContainerDirective = {
+          toggleOctantRemoval: () => {},
+          clear: () => {}
+        } as any
+
+        const toggleOctantRemovalSpy = spyOn(
+          fixture.componentInstance.nehubaContainerDirective,
+          'toggleOctantRemoval'
+        )
+
+        const mockStore = TestBed.inject(MockStore)
+        mockStore.overrideSelector(viewerStateCustomLandmarkSelector, [
+          lm1, 
+          lm2
+        ])
+        mockStore.overrideSelector(ngViewerSelectorOctantRemoval, true)
+        fixture.detectChanges()
+        expect(
+          toggleOctantRemovalSpy
+        ).toHaveBeenCalledWith(false)
+      })
+    })
   })
 })
diff --git a/src/ui/nehubaContainer/nehubaContainer.component.ts b/src/ui/nehubaContainer/nehubaContainer.component.ts
index 43f30390e593e7452225b7516434e7039885a39a..3447e5160185d227687fd00fb1e16986698d3728 100644
--- a/src/ui/nehubaContainer/nehubaContainer.component.ts
+++ b/src/ui/nehubaContainer/nehubaContainer.component.ts
@@ -189,6 +189,11 @@ export class NehubaContainer implements OnInit, OnChanges, OnDestroy {
   @Output()
   public nehubaViewerLoaded: EventEmitter<boolean> = new EventEmitter()
 
+  @Output()
+  public forceUI$: Observable<{ target: 'perspective:octantRemoval', mode: boolean,  message?: string }>
+
+  public disableOctantRemoval$: Observable<{ message?: string, mode: boolean }>
+
   public handleViewerLoadedEvent(flag: boolean){
     this.viewerLoaded = flag
     this.nehubaViewerLoaded.emit(flag)
@@ -364,6 +369,30 @@ export class NehubaContainer implements OnInit, OnChanges, OnDestroy {
       distinctUntilChanged(),
     )
 
+    /**
+     * in future, perhaps add other force UI optinos here
+     */
+    this.forceUI$ = this.userLandmarks$.pipe(
+      map(lm => {
+        if (lm.length > 0) {
+          return {
+            target: 'perspective:octantRemoval',
+            mode: false,
+            message: `octant control disabled: showing landmarks.`
+          }
+        } else {
+          return {
+            target: 'perspective:octantRemoval',
+            mode: null
+          }
+        }
+      })
+    )
+
+    this.disableOctantRemoval$ = this.forceUI$.pipe(
+      filter(({ target }) => target === 'perspective:octantRemoval'),
+    )
+
     this.sliceRenderEvent$ = fromEvent(this.elementRef.nativeElement, 'sliceRenderEvent').pipe(
       map(ev => ev as CustomEvent)
     )
@@ -407,7 +436,8 @@ export class NehubaContainer implements OnInit, OnChanges, OnDestroy {
         }),
         distinctUntilChanged(),
         startWith('Loading ...'),
-        throttleTime(100, asyncScheduler, { leading: true, trailing: true })
+        throttleTime(100, asyncScheduler, { leading: true, trailing: true }),
+        shareReplay(1),
       ))
     )
 
@@ -553,6 +583,9 @@ export class NehubaContainer implements OnInit, OnChanges, OnDestroy {
       }),
     )
 
+    /**
+     * TODO deprecate, but document the method
+     */
     this.subscriptions.push(
       combineLatest(
         this.fetchedSpatialDatasets$,
@@ -585,7 +618,16 @@ export class NehubaContainer implements OnInit, OnChanges, OnDestroy {
     )
 
     this.subscriptions.push(
-      this.userLandmarks$.subscribe(landmarks => {
+      this.userLandmarks$.pipe(
+        withLatestFrom(
+          this.nehubaViewerPerspectiveOctantRemoval$
+        )
+      ).subscribe(([landmarks, flag]) => {
+        if (this.nehubaContainerDirective) {
+          this.nehubaContainerDirective.toggleOctantRemoval(
+            landmarks.length > 0 ? false : flag
+          )
+        }
         if (this.nehubaViewer) {
           this.nehubaViewer.updateUserLandmarks(landmarks)
         }
diff --git a/src/ui/nehubaContainer/nehubaContainer.template.html b/src/ui/nehubaContainer/nehubaContainer.template.html
index 499f5c3bb03e8588de34016681b512a7f2f74255..e071b93515a1814be2a96530418f53ccf697230d 100644
--- a/src/ui/nehubaContainer/nehubaContainer.template.html
+++ b/src/ui/nehubaContainer/nehubaContainer.template.html
@@ -20,16 +20,16 @@
 
 <current-layout *ngIf="viewerLoaded" class="position-absolute w-100 h-100 d-block pe-none">
   <div class="w-100 h-100 position-relative" cell-i>
-    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: 0 }"></ng-content>
+    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: panelOrder$ | async | getNthElement : 0 | parseAsNumber }"></ng-content>
   </div>
   <div class="w-100 h-100 position-relative" cell-ii>
-    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: 1 }"></ng-content>
+    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: panelOrder$ | async | getNthElement : 1 | parseAsNumber }"></ng-content>
   </div>
   <div class="w-100 h-100 position-relative" cell-iii>
-    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: 2 }"></ng-content>
+    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: panelOrder$ | async | getNthElement : 2 | parseAsNumber }"></ng-content>
   </div>
   <div class="w-100 h-100 position-relative" cell-iv>
-    <ng-content *ngTemplateOutlet="overlayPerspectiveTmpl"></ng-content>
+    <ng-content *ngTemplateOutlet="ngPanelOverlayTmpl; context: { panelIndex: panelOrder$ | async | getNthElement : 3 | parseAsNumber }"></ng-content>
   </div>
 </current-layout>
 
@@ -344,7 +344,7 @@
   let-iconTooltip="iconTooltip"
   let-iavNgIf="iavNgIf"
   let-content="content">
-  <mat-expansion-panel class="mt-1 mb-1"
+  <mat-expansion-panel
     [attr.data-opened]="expansionPanel.expanded"
     [attr.data-mat-expansion-title]="title"
     hideToggle
@@ -563,93 +563,93 @@
     }">
     </ng-container>
 
+    <div class="w-0 h-0"
+      iav-counter
+      #connectedCounterDir="iavCounter">
+
+      <hbp-connectivity-matrix-row *ngIf="region && region.name" [region]="region.name"
+        (connectivityDataReceived)="connectedCounterDir.value = $event.detail.length"
+        class="invisible d-block h-0 w-0"
+        loadurl="https://connectivity-query-v1-1-connectivity.apps-dev.hbp.eu/v1.1/studies/1345998a08539dc24bda8817c7d5804558d83b1c">
+      </hbp-connectivity-matrix-row>
+    </div>
   </mat-accordion>
-  <div class="w-0 h-0"
-    iav-counter
-    #connectedCounterDir="iavCounter">
-
-    <hbp-connectivity-matrix-row *ngIf="region && region.name" [region]="region.name"
-      (connectivityDataReceived)="connectedCounterDir.value = $event.detail.length"
-      class="invisible d-block h-0 w-0"
-      loadurl="https://connectivity-query-v1-1-connectivity.apps-dev.hbp.eu/v1.1/studies/1345998a08539dc24bda8817c7d5804558d83b1c">
-    </hbp-connectivity-matrix-row>
-  </div>
 </ng-template>
 
 <!-- overlay templates -->
 
-<!-- perspective view tmpl -->
-<ng-template #overlayPerspectiveTmpl>
-  <layout-floating-container class="tmp" landmarkContainer>
-
-    <div class="d-flex flex-column justify-content-center align-items-center w-100 h-100 position-absolute opacity-crossfade screen-overlay pe-none"
-      [ngClass]="{onHover: !!(showPerpsectiveScreen$ | async)}"
-      [attr.id]="ID_MESH_LOADING_STATUS"
-      role="status">
+<!-- slice view overlay tmpl -->
+<ng-template #ngPanelOverlayTmpl let-panelIndex="panelIndex">
 
-      <spinner-cmp *ngIf="showPerpsectiveScreen$ | async">
-      </spinner-cmp>
-      
-      <mat-list>
-        <mat-list-item>
-          {{ showPerpsectiveScreen$ | async }}
-        </mat-list-item>
-      </mat-list>
-    </div>
+  <!-- perspective view tmpl -->
+  <ng-template #overlayPerspectiveTmpl>
+    <layout-floating-container class="tmp" landmarkContainer>
+
+      <div class="d-flex flex-column justify-content-center align-items-center w-100 h-100 position-absolute opacity-crossfade screen-overlay pe-none"
+        [ngClass]="{onHover: !!(showPerpsectiveScreen$ | async)}"
+        [attr.id]="ID_MESH_LOADING_STATUS"
+        role="status">
+
+        <spinner-cmp *ngIf="showPerpsectiveScreen$ | async">
+        </spinner-cmp>
+        
+        <mat-list>
+          <mat-list-item>
+            {{ showPerpsectiveScreen$ | async }}
+          </mat-list-item>
+        </mat-list>
+      </div>
 
-    <!-- maximise/minimise button -->
-    <ng-container *ngTemplateOutlet="panelCtrlTmpl; context: {
-      panelIndex: panelOrder$ | async | getNthElement : 3 | parseAsNumber,
-      visible: (panelOrder$ | async | reorderPanelIndexPipe : ( hoveredPanelIndices$ | async )) === 3
-    }">
-    </ng-container>
+      <!-- maximise/minimise button -->
+      <ng-container *ngTemplateOutlet="panelCtrlTmpl; context: {
+        panelIndex: panelIndex,
+        visible: (hoveredPanelIndices$ | async) === panelIndex
+      }">
+      </ng-container>
 
-    <!-- mesh loading is still weird -->
-    <!-- if the precomputed server does not have the necessary fragment file, then the numberws will not collate -->
-    <div *ngIf="false && (perspectiveViewLoading$ | async)" class="loadingIndicator">
-      <spinner-cmp></spinner-cmp>
+      <!-- mesh loading is still weird -->
+      <!-- if the precomputed server does not have the necessary fragment file, then the numberws will not collate -->
+      <div *ngIf="false && (perspectiveViewLoading$ | async)" class="loadingIndicator">
+        <spinner-cmp></spinner-cmp>
 
-      <div *ngIf="false" perspectiveLoadingText>
-        {{ perspectiveViewLoading$ | async }}
+        <div *ngIf="false" perspectiveLoadingText>
+          {{ perspectiveViewLoading$ | async }}
+        </div>
       </div>
-    </div>
-  </layout-floating-container>
-</ng-template>
-
-<!-- slice view overlay tmpl -->
-<ng-template #ngPanelOverlayTmpl let-panelIndex="panelIndex">
+    </layout-floating-container>
+  </ng-template>
 
   <!-- nb this slice view is not suitable for perspective view! -->
-  <layout-floating-container *ngIf="panelIndex < 3" landmarkContainer>
+  <layout-floating-container *ngIf="panelIndex < 3; else overlayPerspectiveTmpl"
+    landmarkContainer
+    class="overflow-hidden">
 
     <!-- customLandmarks -->
-    <nehuba-2dlandmark-unit *ngFor="let lm of (customLandmarks$ | async | filterByProperty : 'showInSliceView')"
+    <landmark-2d-flat-cmp *ngFor="let lm of (customLandmarks$ | async | filterByProperty : 'showInSliceView')"
       (mouseenter)="handleMouseEnterCustomLandmark(lm)"
       (mouseleave)="handleMouseLeaveCustomLandmark(lm)"
-      fasClass="fa-chevron-down"
       [color]="lm.color || [255, 255, 255]"
       [positionX]="getPositionX(panelIndex, lm)"
       [positionY]="getPositionY(panelIndex, lm)"
       [positionZ]="getPositionZ(panelIndex, lm)">
 
-    </nehuba-2dlandmark-unit>
+    </landmark-2d-flat-cmp>
 
     <!-- only show landmarks in slice views -->
 
-    <nehuba-2dlandmark-unit *ngFor="let spatialData of (selectedPtLandmarks$ | async)"
+    <landmark-2d-flat-cmp *ngFor="let spatialData of (selectedPtLandmarks$ | async)"
       (mouseenter)="handleMouseEnterLandmark(spatialData)"
       (mouseleave)="handleMouseLeaveLandmark(spatialData)"
       [highlight]="spatialData.highlight ? spatialData.highlight : false"
-      [fasClass]="spatialData.type === 'userLandmark' ? 'fa-chevron-down' : 'fa-map-marker'"
       [positionX]="getPositionX(panelIndex, spatialData)"
       [positionY]="getPositionY(panelIndex, spatialData)"
       [positionZ]="getPositionZ(panelIndex, spatialData)">
-    </nehuba-2dlandmark-unit>
+    </landmark-2d-flat-cmp>
 
     <!-- maximise/minimise button -->
     <ng-container *ngTemplateOutlet="panelCtrlTmpl; context: {
-      panelIndex: panelOrder$ | async | getNthElement : panelIndex | parseAsNumber,
-      visible: (panelOrder$ | async | reorderPanelIndexPipe : ( hoveredPanelIndices$ | async )) === panelIndex
+      panelIndex: panelIndex,
+      visible: (hoveredPanelIndices$ | async) === panelIndex
     }">
     </ng-container>
 
@@ -657,6 +657,7 @@
       <spinner-cmp></spinner-cmp>
     </div>
   </layout-floating-container>
+
 </ng-template>
 
 <!-- panel control template -->
@@ -672,7 +673,10 @@
 
     <!-- perspective specific control -->
     <ng-container *ngIf="panelIndex === 3">
-      <ng-container *ngTemplateOutlet="perspectiveOctantRemovalTmpl; context: { state: (nehubaViewerPerspectiveOctantRemoval$ | async) }">
+      <ng-container *ngTemplateOutlet="perspectiveOctantRemovalTmpl; context: {
+        state: (nehubaViewerPerspectiveOctantRemoval$ | async),
+        disableOctantRemoval: disableOctantRemoval$ | async
+      }">
 
       </ng-container>
     </ng-container>
@@ -700,23 +704,27 @@
 </ng-template>
 
 
-<ng-template #perspectiveOctantRemovalTmpl let-state="state">
-  <button
-    (click)="setOctantRemoval(!state)"
-    mat-icon-button
-    [attr.aria-label]="ARIA_LABEL_TOGGLE_FRONTAL_OCTANT"
-    color="primary">
+<ng-template #perspectiveOctantRemovalTmpl let-state="state" let-disableOctantRemoval="disableOctantRemoval">
+  <div class="d-inline-block"
+    [matTooltip]="disableOctantRemoval?.mode !== null ? disableOctantRemoval.message : null">
+    <button
+      (click)="setOctantRemoval(!state)"
+      mat-icon-button
+      [disabled]="disableOctantRemoval?.mode !== null"
+      [attr.aria-label]="ARIA_LABEL_TOGGLE_FRONTAL_OCTANT"
+      color="primary">
 
-    <!-- octant removal is true -->
-    <ng-template [ngIf]="nehubaViewerPerspectiveOctantRemoval$ | async" [ngIfElse]="octantRemovalOffTmpl">
-      <i class="fas fa-eye-slash"></i>
-    </ng-template>
+      <!-- octant removal is true -->
+      <ng-template [ngIf]="disableOctantRemoval?.mode !== null ? disableOctantRemoval.mode : state" [ngIfElse]="octantRemovalOffTmpl">
+        <i class="fas fa-eye-slash"></i>
+      </ng-template>
 
-    <!-- octant removal is false -->
-    <ng-template #octantRemovalOffTmpl>
-      <i class="fas fa-eye"></i>
-    </ng-template>
-  </button>
+      <!-- octant removal is false -->
+      <ng-template #octantRemovalOffTmpl>
+        <i class="fas fa-eye"></i>
+      </ng-template>
+    </button>
+  </div>
 </ng-template>
 
 
diff --git a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
index 8393b9980d03f4aae65fe64dd28961c23ea1dc74..d1edab5e0f9fa80aa6347906b43c5d4ccceef803 100644
--- a/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
+++ b/src/ui/nehubaContainer/nehubaViewer/nehubaViewer.component.ts
@@ -250,7 +250,19 @@ export class NehubaViewerUnit implements OnInit, OnDestroy {
         /**
          * url may be null if user removes all landmarks
          */
-        if (!url) { return }
+        if (!url) {
+          /**
+           * remove transparency from meshes in current layer(s)
+           */
+          for (const layerKey of this.multiNgIdsLabelIndexMap.keys()) {
+            const layer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(layerKey)
+            if (layer) {
+              layer.layer.displayState.objectAlpha.restoreState(1.0)
+            }
+          }
+  
+          return
+        }
         const _ = {}
         _[NG_USER_LANDMARK_LAYER_NAME] = {
           type: 'mesh',
@@ -258,6 +270,16 @@ export class NehubaViewerUnit implements OnInit, OnDestroy {
           shader: this.userLandmarkShader,
         }
         this.loadLayer(_)
+
+        /**
+         * adding transparency to meshes in current layer(s)
+         */
+        for (const layerKey of this.multiNgIdsLabelIndexMap.keys()) {
+          const layer = this.nehubaViewer.ngviewer.layerManager.getLayerByName(layerKey)
+          if (layer) {
+            layer.layer.displayState.objectAlpha.restoreState(0.2)
+          }
+        }
       }),
     )
   }
diff --git a/src/ui/nehubaContainer/nehubaViewerInterface/nehubaViewerInterface.directive.ts b/src/ui/nehubaContainer/nehubaViewerInterface/nehubaViewerInterface.directive.ts
index cb3f929af8b4724dbbf97d1e649932a06a77bc15..f4a1973ae240f4235f441159dc0892456c381f2f 100644
--- a/src/ui/nehubaContainer/nehubaViewerInterface/nehubaViewerInterface.directive.ts
+++ b/src/ui/nehubaContainer/nehubaViewerInterface/nehubaViewerInterface.directive.ts
@@ -313,11 +313,7 @@ export class NehubaViewerContainerDirective implements OnInit, OnDestroy{
       this.nehubaViewerPerspectiveOctantRemoval$.pipe(
         distinctUntilChanged()
       ).subscribe(flag =>{
-        const showPerspectiveSliceViews = this.nehubaViewerInstance?.nehubaViewer?.ngviewer?.showPerspectiveSliceViews
-        if (showPerspectiveSliceViews) showPerspectiveSliceViews.restoreState(flag)
-        else {
-          this.log && this.log.warn(`showPerspectiveSliceViews not defined`)
-        }
+        this.toggleOctantRemoval(flag)
       })
     )
 
@@ -374,6 +370,14 @@ export class NehubaViewerContainerDirective implements OnInit, OnDestroy{
     }
   }
 
+  public toggleOctantRemoval(flag: boolean){
+    const showPerspectiveSliceViews = this.nehubaViewerInstance?.nehubaViewer?.ngviewer?.showPerspectiveSliceViews
+    if (showPerspectiveSliceViews) showPerspectiveSliceViews.restoreState(flag)
+    else {
+      this.log && this.log.warn(`showPerspectiveSliceViews not defined`)
+    }
+  }
+
   createNehubaInstance(template: any, lifeCycle: INehubaLifecycleHook = {}){
     this.clear()
     this.iavNehubaViewerContainerViewerLoading.emit(true)
diff --git a/src/ui/parcellationRegion/region.base.ts b/src/ui/parcellationRegion/region.base.ts
index 2d341de8eb904b8ac23eace486ef5ac2a9e720a5..473a830af001bb96e532fb38d2f516afb92390b7 100644
--- a/src/ui/parcellationRegion/region.base.ts
+++ b/src/ui/parcellationRegion/region.base.ts
@@ -33,7 +33,7 @@ export class RegionBase {
   set region(val) {
     this._region = val
     this.region$.next(this._region)
-    this.position = val.position
+    this.position = val && val.position
     if (!this._region) return
 
     const rgb = this._region.rgb || (this._region.labelIndex && intToRgb(Number(this._region.labelIndex))) || [255, 200, 200]
@@ -90,19 +90,31 @@ export class RegionBase {
           const filteredRsInOtherTmpls = []
           for (const bundledObj of regionsInOtherTemplates) {
             const { template, parcellation, region } = bundledObj
-            const idx = filteredRsInOtherTmpls.findIndex(({ template: _template, region: _region }) => {
+
+            /**
+             * trying to find duplicate region
+             * with same templateId, and same hemisphere
+             */
+            const sameEntityIdx = filteredRsInOtherTmpls.findIndex(({ template: _template, region: _region }) => {
               return _template['@id'] === template['@id']
-                && getRegionHemisphere(_region) !== getRegionHemisphere(region)
+                && getRegionHemisphere(_region) === getRegionHemisphere(region)
             })
-            if ( idx < 0 ) {
+            /**
+             * if doesn't exist, just push to output
+             */
+            if ( sameEntityIdx < 0 ) {
               filteredRsInOtherTmpls.push(bundledObj)
             } else {
-              const { parcellation: currentParc } = filteredRsInOtherTmpls[idx]
+
+              /**
+               * if exists, only append the latest version
+               */
+              const { parcellation: currentParc } = filteredRsInOtherTmpls[sameEntityIdx]
               /**
                * if the new element is newer than existing item
                */
               if (isNewerThan(parcellations, parcellation, currentParc)) {
-                filteredRsInOtherTmpls.splice(idx, 1)
+                filteredRsInOtherTmpls.splice(sameEntityIdx, 1)
                 filteredRsInOtherTmpls.push(bundledObj)
               }
             }
diff --git a/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts b/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts
index fceeb0c7046afe38195967825e12cbd82097dde2..3c7f395eece740396746c2e452f9f9061490736b 100644
--- a/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts
+++ b/src/ui/parcellationRegion/regionMenu/regionMenu.component.spec.ts
@@ -112,161 +112,5 @@ describe('> regionMenu.component.ts', () => {
       const fixture = TestBed.createComponent(RegionMenuComponent)
       expect(fixture).toBeTruthy()
     })
-    
-    describe('> regionInOtherTemplatesTmpl', () => {
-      beforeEach(() => {
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          viewerStateGetSelectedAtlas,
-          { parcellations: [] }
-        )
-      })
-
-      it('> if selector returns empty array, data-available-in-tmpl-count == 0', () => {
-
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          []
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) )
-        expect(toggleBtn.attributes['data-available-in-tmpl-count']).toEqual('0')
-      })
-
-      it('> if selector returns non empty array, data-available-in-tmpl-count == array.length', () => {
-
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          nohemisphereHrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) )
-        expect(toggleBtn.attributes['data-available-in-tmpl-count']).toEqual('2')
-      })
-
-      it('> if showRegionInOtherTmpl is set to false, toggle btn will not be shown', () => {
-        
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          nohemisphereHrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.componentInstance.showRegionInOtherTmpl = false
-        fixture.detectChanges()
-
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) )
-        expect(toggleBtn).toBeFalsy()
-      })
-
-      it('> even if toggleBtn exists, list should be hidden by default', () => {
-
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          nohemisphereHrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-
-        const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) )
-        expect(listContainer).toBeFalsy()
-      })
-
-      it('> on click of toggle btn, list to become visible', () => {
-
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          nohemisphereHrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) )
-        toggleBtn.triggerEventHandler('click', null)
-        fixture.detectChanges()
-        const listContainer = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"]`) )
-        expect(listContainer).toBeTruthy()
-      })
-
-      it('> once list becomes available, there should be 2 items on the list', () => {
-
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          nohemisphereHrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) )
-        toggleBtn.triggerEventHandler('click', null)
-        fixture.detectChanges()
-        const listContainer = fixture.debugElement.queryAll( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"] [role="button"]`) )
-        expect(listContainer.length).toEqual(2)
-      })
-
-      it('> the text (no hemisphere metadata) on the list is as expected', () => {
-
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          nohemisphereHrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) )
-        toggleBtn.triggerEventHandler('click', null)
-        fixture.detectChanges()
-        const listContainer = fixture.debugElement.queryAll( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"] [role="button"]`) )
-
-        // trim white spaces before and after
-        
-        const texts = listContainer.map(c => c.nativeElement.textContent.replace(/^\s+/, '').replace(/\s+$/, ''))
-        expect(texts).toContain(mt0.name)
-        expect(texts).toContain(mt1.name)
-      })
-
-      it('> the text (with hemisphere metadata) on the list is as expected', () => {
-        
-        const mockStore = TestBed.inject(MockStore)
-        mockStore.overrideSelector(
-          regionInOtherTemplateSelector,
-          hemisphereMrms
-        )
-
-        const fixture = TestBed.createComponent(RegionMenuComponent)
-        fixture.componentInstance.region = mr1
-        fixture.detectChanges()
-        const toggleBtn = fixture.debugElement.query( By.css(`[aria-label="${ARIA_LABELS.AVAILABILITY_IN_OTHER_REF_SPACE}"]`) )
-        toggleBtn.triggerEventHandler('click', null)
-        fixture.detectChanges()
-        const listContainer = fixture.debugElement.queryAll( By.css(`[aria-label="${ARIA_LABELS.SHOW_IN_OTHER_REF_SPACE}"] [role="button"]`) )
-
-        // trim white spaces before and after, and middle white spaces into a single white space
-        const texts = listContainer.map(c => c.nativeElement.textContent.replace(/^\s+/, '').replace(/\s+$/, '').replace(/\s+/g, ' '))
-        expect(texts).toContain(`${mt0.name} (left hemisphere)`)
-        expect(texts).toContain(`${mt1.name} (left hemisphere)`)
-      })
-    })
   })
 })
\ No newline at end of file
diff --git a/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.component.ts b/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.component.ts
index 800249b0ece08fdce51e5185985fcdda780de3b9..37c0fdc07a32a9d479d8f1fa85c804f8ad6b2f5b 100644
--- a/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.component.ts
+++ b/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.component.ts
@@ -1,6 +1,8 @@
 import { Component, Inject, Optional, EventEmitter } from "@angular/core";
+import { Store } from "@ngrx/store";
 import { merge, Subject, Subscription } from "rxjs";
 import { debounceTime, map, scan, take } from "rxjs/operators";
+import { viewerStateChangeNavigation } from "src/services/state/viewerState/actions";
 import { RegionalFeaturesService } from "src/ui/regionalFeatures/regionalFeature.service";
 import { ClickInterceptor, CLICK_INTERCEPTOR_INJECTOR } from "src/util";
 import { IHasId } from "src/util/interfaces";
@@ -23,6 +25,7 @@ export class IEEGRecordingsCmp extends RegionFeatureBase implements ISingleFeatu
 
   constructor(
     private regionFeatureService: RegionalFeaturesService,
+    private store: Store<any>,
     @Optional() @Inject(CLICK_INTERCEPTOR_INJECTOR) private regClickIntp: ClickInterceptor,
   ){
     super(regionFeatureService)
@@ -101,6 +104,19 @@ export class IEEGRecordingsCmp extends RegionFeatureBase implements ISingleFeatu
     while(this.sub.length > 0) this.sub.pop().unsubscribe()
   }
 
+  handleContactPtClk(contactPt: IHasId & { position: number[] }){
+    const { position } = contactPt
+    this.store.dispatch(
+      viewerStateChangeNavigation({
+        navigation: {
+          position: position.map(v => v * 1e6),
+          positionReal: true,
+          animation: {}
+        },
+      })
+    )
+  }
+
   handleDatumExpansion(electrodeId: string, open: boolean){
     /**
      * TODO either debounce call here, or later down stream
diff --git a/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.template.html b/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.template.html
index 64e66983c69b605a34b4a1fa918ed532cfc31fb1..8d5cd968e4803219c7f8dca22ba3438c4321644b 100644
--- a/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.template.html
+++ b/src/ui/regionalFeatures/singleFeatures/iEEGRecordings/iEEGRecordings/iEEGRecordings.template.html
@@ -35,8 +35,11 @@
       <section class="d-flex align-items-center mt-1">
         <section id="contact-points-list" class="flex-grow-1 flex-shrink-1 overflow-x-auto">
           <div role="list" class="ws-no-wrap">
-            <mat-chip *ngFor="let contactPt of datum['contactPoints']" class="ml-1">
-              {{ contactPt.position | addUnitAndJoin : '' }}
+            <mat-chip *ngFor="let contactPt of datum['contactPoints']"
+              [matTooltip]="contactPt['position']"
+              (click)="handleContactPtClk(contactPt)"
+              class="ml-1">
+              {{ contactPt['@id'] }}
             </mat-chip>
           </div>
         </section>
diff --git a/src/ui/regionalFeatures/singleFeatures/receptorDensity/getUrl.pipe.ts b/src/ui/regionalFeatures/singleFeatures/receptorDensity/getUrl.pipe.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f4fdfab5613c225aa293a05b45c9d0ab8be666ab
--- /dev/null
+++ b/src/ui/regionalFeatures/singleFeatures/receptorDensity/getUrl.pipe.ts
@@ -0,0 +1,45 @@
+import { Pipe, PipeTransform } from "@angular/core";
+import { IHasId } from "src/util/interfaces";
+
+interface IReceptorDatum extends IHasId{
+  ['@context']: {
+    [key: string]: string
+  }
+  filename: string
+  mimetype: string
+  url: string | {
+    url: string
+    ['receptors.tsv']: string
+  }
+}
+
+interface IHRef{
+  url: string
+  filename: string
+}
+
+@Pipe({
+  name: 'getUrls',
+  pure: true
+})
+
+export class GetUrlsPipe implements PipeTransform{
+  public transform(input: IReceptorDatum): IHRef[]{
+    const output: IHRef[] = []
+    let _url = typeof input.url === 'string'
+      ? input.url
+      : input.url.url
+
+    for (const key in (input['@context'] || {})) {
+      _url = _url.replace(`${key}:`, input['@context'][key])
+    }
+
+    const match = /\/([\w-.]+)$/.exec(_url)
+    output.push({
+      url: _url,
+      filename: match ? match[1] : 'download'
+    })
+    return output
+  }
+}
+
diff --git a/src/ui/regionalFeatures/singleFeatures/receptorDensity/module.ts b/src/ui/regionalFeatures/singleFeatures/receptorDensity/module.ts
index b090a287314d4371c393a45b6102251a99122880..e75a9049402245140516abdb08107b9033c08838 100644
--- a/src/ui/regionalFeatures/singleFeatures/receptorDensity/module.ts
+++ b/src/ui/regionalFeatures/singleFeatures/receptorDensity/module.ts
@@ -5,6 +5,7 @@ import { RegionalFeaturesService } from "../../regionalFeature.service";
 import { FilterReceptorByType } from "./filterReceptorBytype.pipe";
 import { GetAllReceptorsPipe } from "./getAllReceptors.pipe";
 import { GetIdPipe } from "./getId.pipe";
+import { GetUrlsPipe } from "./getUrl.pipe";
 import { ReceptorDensityFeatureCmp } from "./receptorDensity/receptorDensity.component";
 
 @NgModule({
@@ -17,6 +18,7 @@ import { ReceptorDensityFeatureCmp } from "./receptorDensity/receptorDensity.com
     FilterReceptorByType,
     GetIdPipe,
     GetAllReceptorsPipe,
+    GetUrlsPipe,
   ],
   schemas: [
     CUSTOM_ELEMENTS_SCHEMA
diff --git a/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.component.ts b/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.component.ts
index b375fa6c94fc299b29e7c401d9a5441083e61381..1ecf5f8d6c8b1f60bcb2520039666fe0b4a3f17d 100644
--- a/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.component.ts
+++ b/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.component.ts
@@ -4,7 +4,13 @@ import { RegionalFeaturesService } from "src/ui/regionalFeatures/regionalFeature
 import { PureContantService } from "src/util";
 import { RegionFeatureBase } from "../../base/regionFeature.base";
 import { ISingleFeature } from "../../interfaces";
+import { CONST } from 'common/constants'
 
+const {
+  RECEPTOR_FP_CAPTION,
+  RECEPTOR_PR_CAPTION,
+  RECEPTOR_AR_CAPTION,
+} = CONST
 @Component({
   templateUrl: './receptorDensity.template.html',
   styleUrls: [
@@ -13,6 +19,11 @@ import { ISingleFeature } from "../../interfaces";
 })
 
 export class ReceptorDensityFeatureCmp extends RegionFeatureBase implements ISingleFeature, OnDestroy{
+
+  public RECEPTOR_FP_CAPTION = RECEPTOR_FP_CAPTION
+  public RECEPTOR_PR_CAPTION = RECEPTOR_PR_CAPTION
+  public RECEPTOR_AR_CAPTION = RECEPTOR_AR_CAPTION
+
   public DS_PREVIEW_URL = DATASET_PREVIEW_URL
   viewChanged: EventEmitter<null> = new EventEmitter()
 
diff --git a/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.template.html b/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.template.html
index 63da533879908ef0a59b8cd9691411e192de6f41..55bebd6798509e8aff576185ee53fe3f65e71748 100644
--- a/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.template.html
+++ b/src/ui/regionalFeatures/singleFeatures/receptorDensity/receptorDensity/receptorDensity.template.html
@@ -3,15 +3,25 @@
 </label>
 
 <ng-container *ngFor="let datum of (data$ | async | filterReceptorByType : '_fp_')">
+
+  <ng-container *ngTemplateOutlet="labelTmpl; context: {
+    for: 'fingerprint-cmp',
+    label: RECEPTOR_FP_CAPTION
+  }">
+  </ng-container>
+
   <ng-container *ngTemplateOutlet="datasetPreviewTmpl; context: {
     id: 'fingerprint-cmp',
     kgId: (feature['@id'] | getId),
-    filename: datum['@id']
+    filename: datum['@id'],
+    datum: datum
   }">
-  
   </ng-container>
+
 </ng-container>
 
+<mat-divider></mat-divider>
+
 <ng-container *ngIf="data$ | async | getAllReceptors as allReceptors; else selectPlaceHolderTmpl">
 
   <mat-form-field class="mt-2 w-100" *ngIf="allReceptors.length > 0; else selectPlaceHolderTmpl">
@@ -49,16 +59,42 @@
       </label>
     </ng-template>
 
+    <ng-container *ngTemplateOutlet="labelTmpl; context: {
+      for: label + '-cmp',
+      label: 'Autoradiograph' ? RECEPTOR_AR_CAPTION : RECEPTOR_PR_CAPTION
+    }">
+    </ng-container>
+
     <ng-container *ngTemplateOutlet="datasetPreviewTmpl; context: {
       id: label + '-cmp',
       kgId: (feature['@id'] | getId),
-      filename: datum['@id']
+      filename: datum['@id'],
+      datum: datum
     }">
     </ng-container>
+
   </ng-container>
 </ng-template>
 
-<ng-template #datasetPreviewTmpl let-id="id" let-kgId="kgId" let-filename="filename">
+
+<!-- display preview tmpl -->
+<ng-template #datasetPreviewTmpl
+  let-id="id"
+  let-kgId="kgId"
+  let-filename="filename"
+  let-datum="datum">
+
+  <!-- download btns -->
+  <ng-container *ngFor="let urlObj of datum | getUrls">
+    <ng-container *ngTemplateOutlet="downloadBtnTmpl; context: {
+      url: urlObj.url,
+      filename: urlObj.filename,
+      tooltip: 'download ' + urlObj.filename
+    }">
+    </ng-container>
+  </ng-container>
+
+  <!-- render preview -->
   <kg-ds-prv-regional-feature-view
     *ngIf="depScriptLoaded$ | async; else fallbackTmpl"
     [attr.id]="id"
@@ -78,4 +114,25 @@
       [filename]="filename">
     </kg-dataset-previewer>
   </ng-template>
+</ng-template>
+
+<ng-template #downloadBtnTmpl
+  let-url="url"
+  let-filename="filename"
+  let-tooltip="tooltip">
+  <a [href]="url"
+    [download]="filename"
+    [matTooltip]="tooltip">
+    <button mat-icon-button>
+      <i class="fas fa-download"></i>
+    </button>
+  </a>
+</ng-template>
+
+<ng-template #labelTmpl let-label="label" let-for="for">
+  <label [attr.for]="for" class="text-muted">
+    <span>
+      {{ label }}
+    </span>
+  </label>
 </ng-template>
\ No newline at end of file
diff --git a/src/ui/ui.module.ts b/src/ui/ui.module.ts
index 0e09814462b7d34fe606b8872d771623af78b0cf..0c116696a290cd9e622c8f18d6ec4ce740ce429c 100644
--- a/src/ui/ui.module.ts
+++ b/src/ui/ui.module.ts
@@ -11,12 +11,10 @@ import { FilterRegionDataEntries } from "src/util/pipes/filterRegionDataEntries.
 import { GroupDatasetByRegion } from "src/util/pipes/groupDataEntriesByRegion.pipe";
 
 import { GetLayerNameFromDatasets } from "../util/pipes/getLayerNamePipe.pipe";
-import { SafeStylePipe } from "../util/pipes/safeStyle.pipe";
 import { SortDataEntriesToRegion } from "../util/pipes/sortDataEntriesIntoRegion.pipe";
 import { CitationsContainer } from "./citation/citations.component";
 import { KgEntryViewer } from "./kgEntryViewer/kgentry.component";
 import { SubjectViewer } from "./kgEntryViewer/subjectViewer/subjectViewer.component";
-import { LandmarkUnit } from "./nehubaContainer/landmarkUnit/landmarkUnit.component";
 import { PluginBannerUI } from "./pluginBanner/pluginBanner.component";
 
 import { ScrollingModule } from "@angular/cdk/scrolling"
@@ -86,6 +84,7 @@ import { RenderViewOriginDatasetLabelPipe } from "./parcellationRegion/region.ba
 import { RegionAccordionTooltipTextPipe } from './util'
 import { HelpOnePager } from "./helpOnePager/helpOnePager.component";
 import { RegionalFeaturesModule } from "./regionalFeatures";
+import { Landmark2DModule } from "./nehubaContainer/2dLandmarks/module";
 
 @NgModule({
   imports : [
@@ -105,12 +104,12 @@ import { RegionalFeaturesModule } from "./regionalFeatures";
     AuthModule,
     FabSpeedDialModule,
     RegionalFeaturesModule,
+    Landmark2DModule,
   ],
   declarations : [
     NehubaContainer,
     
     SplashScreen,
-    LandmarkUnit,
     PluginBannerUI,
     CitationsContainer,
     KgEntryViewer,
@@ -151,7 +150,6 @@ import { RegionalFeaturesModule } from "./regionalFeatures";
     GroupDatasetByRegion,
     FilterRegionDataEntries,
     FlatmapArrayPipe,
-    SafeStylePipe,
     GetLayerNameFromDatasets,
     SortDataEntriesToRegion,
     SpatialLandmarksToDataBrowserItemPipe,
diff --git a/src/util/worker.js b/src/util/worker.js
index a46c50fccc19223a9f2fadd1c317eddea9b2d141..9ca462de1c0e246c9fa36df94b315c742d78d373 100644
--- a/src/util/worker.js
+++ b/src/util/worker.js
@@ -5,6 +5,14 @@ const validTypes = [
   'PROPAGATE_PARC_REGION_ATTR'
 ]
 
+const VALID_METHOD = {
+  PROCESS_PLOTLY: `PROCESS_PLOTLY`
+}
+
+const VALID_METHODS = [
+  VALID_METHOD.PROCESS_PLOTLY
+]
+
 const validOutType = [
   'ASSEMBLED_LANDMARKS_VTK',
   'ASSEMBLED_USERLANDMARKS_VTK',
@@ -91,8 +99,7 @@ const parseLmToVtk = (landmarks, scale) => {
 
   const reduce = landmarks.reduce((acc,curr,idx) => {
     //curr : null | [number,number,number] | [ [number,number,number], [number,number,number], [number,number,number] ][]
-    if(curr === null)
-      return acc
+    if(curr === null) return acc
     if(!isNaN(curr[0]))
       /**
        * point primitive, render icosahedron
@@ -162,12 +169,10 @@ const getLandmarksVtk = (action) => {
 
   const vtk = parseLmToVtk(landmarks, scale)
   
-  if(!vtk)
-    return
+  if(!vtk) return
 
   // when new set of landmarks are to be displayed, the old landmarks will be discarded
-  if(landmarkVtkUrl)
-    URL.revokeObjectURL(landmarkVtkUrl)
+  if(landmarkVtkUrl) URL.revokeObjectURL(landmarkVtkUrl)
 
   landmarkVtkUrl = URL.createObjectURL(new Blob( [encoder.encode(vtk)], {type : 'application/octet-stream'} ))
   postMessage({
@@ -201,8 +206,7 @@ const getuserLandmarksVtk = (action) => {
   }
 
   const vtk = parseLmToVtk(landmarks, scale)
-  if(!vtk)
-    return
+  if(!vtk) return
 
   if(userLandmarkVtkUrl)
     URL.revokeObjectURL(userLandmarkVtkUrl)
@@ -288,7 +292,55 @@ const processParcRegionAttr = (payload) => {
   })
 }
 
+let plotyVtkUrl
+
 onmessage = (message) => {
+  if (message.data.method && VALID_METHODS.indexOf(message.data.method) >= 0) {
+    const { id } = message.data
+    if (message.data.method === VALID_METHOD.PROCESS_PLOTLY) {
+      /**
+       * units in mm --> convert to nm
+       */
+      const plotyMultiple=1e6
+      try {
+        const { data: plotlyData } = message.data.param
+        const { x, y, z } = plotlyData.traces[0]
+        const lm = []
+        for (const idx in x) {
+          if (typeof x !== 'undefined' && x !== null) {
+            lm.push([x[idx]*plotyMultiple, y[idx]*plotyMultiple, z[idx]*plotyMultiple])
+          }
+        }
+        if (plotyVtkUrl) URL.revokeObjectURL(plotyVtkUrl)
+        const vtkString = parseLmToVtk(lm, 3e-2)
+        plotyVtkUrl = URL.createObjectURL(
+          new Blob([ encoder.encode(vtkString) ], { type: 'application/octet-stream' })
+        )
+        postMessage({
+          id,
+          result: {
+            objectUrl: plotyVtkUrl
+          }
+        })
+      } catch (e) {
+        postMessage({
+          id,
+          error: {
+            code: 401,
+            message: `malformed plotly param: ${e.toString()}`
+          }
+        })
+      }
+    }
+    postMessage({
+      id,
+      error: {
+        code: 404,
+        message: `worker method not found`
+      }
+    })
+    return
+  }
   
   if(validTypes.findIndex(type => type === message.data.type) >= 0){
     switch(message.data.type){